OPEN_MULTIPLE property

ShowFileChooserRequestMode OPEN_MULTIPLE
final

Like Open but allows multiple files to be selected.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

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