isMapAvailable static method

Future<bool?> isMapAvailable(
  1. MapType mapType
)

Returns boolean indicating if map app is installed

Implementation

static Future<bool?> isMapAvailable(MapType mapType) async {
  return _channel.invokeMethod(
    'isMapAvailable',
    {'mapType': Utils.enumToString(mapType)},
  );
}