launchMap static method

  1. @Deprecated('use showMarker instead')
Future launchMap({
  1. required MapType mapType,
  2. required Coords coords,
  3. required String title,
  4. String? description,
})

Implementation

@Deprecated('use showMarker instead')
static Future<dynamic> launchMap({
  required MapType mapType,
  required Coords coords,
  required String title,
  String? description,
}) {
  return showMarker(
    mapType: mapType,
    coords: coords,
    title: title,
    description: description,
  );
}