setPoiRadius method

  1. @override
Future<String?> setPoiRadius(
  1. String radius
)
override

The function sets the radius for points of interest (POI) and returns a Future with the result. @param {String} radius - The radius parameter is a string that represents the radius value for a point of interest (POI). It is used to set the radius of the POI in the method setPoiRadius. @returns The method is returning a Future object that resolves to a String or null.

Implementation

@override
Future<String?> setPoiRadius(String radius) async {
  final returnVal =
      await methodChannel.invokeMethod<String>('setPoiRadius', radius);
  return returnVal;
}