isSystemApp method

Future<bool> isSystemApp (
  1. String packageName
)

Implementation

static Future<bool> isSystemApp(String packageName) async {
  return _channel.invokeMethod("isSystemApp", {"package_name": packageName});
}