openFileDialog method

  1. @override
Future<String?> openFileDialog()
override

Open the Android open file dialog. Returns: The content of the selected file, or null if no file was selected. (String?)

Implementation

@override
Future<String?> openFileDialog() {
  return _api.openFileDialog();
}