isInstalledOnExternalStorage property

Future<bool> isInstalledOnExternalStorage

Check if the app is installed on an external storage (only Android)

Implementation

static Future<bool> get isInstalledOnExternalStorage async {
  if (Platform.isAndroid)
    return await _channel.invokeMethod("isInstalledOnExternalStorage");
  return Future.value(false);
}