Get the total count of users in the database
static Future<int?> getUserCount() async { try { return await _channel.invokeMethod('getUserCount'); } catch (e) { return null; } }