selectLocation method

  1. @override
Future<void> selectLocation(
  1. MPLocation? location,
  2. MPSelectionBehavior behavior
)
override

Implementation

@override
Future<void> selectLocation(
    MPLocation? location, MPSelectionBehavior behavior) {
  return mapControlMethodChannel.invokeMethod("MPC_selectLocation",
      {"location": location?.id.value, "behavior": behavior._jsonEncode()});
}