SAVE property

ShowFileChooserRequestMode SAVE
final

Allows picking a nonexistent file and saving it.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

static final SAVE = ShowFileChooserRequestMode._internalMultiPlatform(3, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return 3;
    default:
      break;
  }
  return null;
});