installedMaps property

Future<List<AvailableMap>> installedMaps

Returns list of installed map apps on the device.

Implementation

static Future<List<AvailableMap>> get installedMaps async {
  final maps = await _channel.invokeMethod('getInstalledMaps');
  return List<AvailableMap>.from(
    maps.map((map) => AvailableMap.fromJson(map)),
  );
}