OPEN property
final
Open single file. Requires that the file exists before allowing the user to pick it.
Officially Supported Platforms/Implementations:
- Android WebView
Implementation
static final OPEN = ShowFileChooserRequestMode._internalMultiPlatform(0, () {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return 0;
default:
break;
}
return null;
});