removeIndoorBeacons method
The function removeIndoorPois
is an asynchronous method that invokes a method channel to remove indoor 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?> removeIndoorBeacons() async {
final returnVal =
await methodChannel.invokeMethod<String>('removeIndoorBeacons');
return returnVal;
}