androidOnFormResubmission method

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform()])
  2. @Deprecated('Use onFormResubmission instead')
FutureOr<FormResubmissionAction?>? androidOnFormResubmission(
  1. Uri? url
)

Use onFormResubmission instead.

Officially Supported Platforms/Implementations:

  • Android WebView

Parameters - Officially Supported Platforms/Implementations:

  • url: all platforms

Use the PlatformInAppBrowserEvents.isMethodSupported method to check if this method is supported at runtime.

Implementation

@SupportedPlatforms(platforms: [AndroidPlatform()])
@Deprecated('Use onFormResubmission instead')
FutureOr<FormResubmissionAction?>? androidOnFormResubmission(Uri? url) {
  return null;
}