getUserAppLaunchCount static method

Future<int?> getUserAppLaunchCount()

Returns the total number of times user has launched the app

Implementation

static Future<int?> getUserAppLaunchCount() async {
  return await _dartToNativeMethodChannel
      .invokeMethod('getUserAppLaunchCount', {});
}