sessionGetTotalVisits static method

Future<int?> sessionGetTotalVisits()

Returns the total number of times the app has been launched

Implementation

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