setGeofenceEnable method
Implementation
void setGeofenceEnable({bool enable = true}) {
if (Platform.isIOS) {
return;
}
print(flutter_log + "setGeofenceEnable:");
_channel.invokeMethod('setGeofenceEnable', {'enable': enable});
}
void setGeofenceEnable({bool enable = true}) {
if (Platform.isIOS) {
return;
}
print(flutter_log + "setGeofenceEnable:");
_channel.invokeMethod('setGeofenceEnable', {'enable': enable});
}