getInstalledMaps method

  1. @override
Future<List<MapType>> getInstalledMaps()
override

Returns the list of MapTypes that have native apps installed. Returns an empty list on platforms that don't support app detection.

Implementation

@override
Future<List<MapType>> getInstalledMaps() async {
  // Web doesn't have "installed" map apps — universal links only
  return [];
}