getLocationById method
Implementation
@override
Future<MPLocation?> getLocationById(String id) async {
final location = await mapsIndoorsMethodChannel
.invokeMethod("MIN_getLocationById", {"id": id});
return MPLocation.fromJson(location);
}