getCountryCount method

  1. @override
Future<int> getCountryCount()
override

Get the number of countries in the database

Implementation

@override
Future<int> getCountryCount() async {
  final result = await methodChannel.invokeMethod<int>('getCountryCount');
  return result!;
}