removePois method
The function removePois
is an asynchronous method that invokes a method channel to remove points
of interest (POIs) and returns a String
value.
@returns The method is returning a Future object that resolves to a String or null.
Implementation
@override
Future<String?> removePois() async {
final returnVal = await methodChannel.invokeMethod<String>('removePois');
return returnVal;
}