getCurrentAppInfo static method

Future<BundleInfo> getCurrentAppInfo()

returns current app details BundleInfo

Implementation

static Future<BundleInfo> getCurrentAppInfo() async {
   final bundleJson = await _channel.invokeMethod(GET_APP_INFO);
   return BundleInfo.fromJson(bundleJson);
}