remove method

Future<bool> remove({
  1. String? customID,
})

删除地理围栏 customID !=null 删除指定围栏 否则删除所有围栏

Implementation

Future<bool> remove({String? customID}) async {
  if (!_supportPlatform || !_isInitialize) return false;
  final bool? state = await _channel.invokeMethod('remove', customID);
  return state == true;
}