getUserCount static method

Future<int?> getUserCount()

Get the total count of users in the database

Implementation

static Future<int?> getUserCount() async {
  try {
    return await _channel.invokeMethod('getUserCount');
  } catch (e) {
    return null;
  }
}