getLastDataDownloadedLocation static method

Future<Map<String, dynamic>?> getLastDataDownloadedLocation()

returns a Map<String,dynamic> which contains the last data download country code and state code

Implementation

static Future<Map<String, dynamic>?> getLastDataDownloadedLocation() async {
  final data = await _channel.invokeMethod('getLastDataDownloadedLocation');
  return _encodeJson(data);
}