addLatLng method

Future<bool> addLatLng(
  1. AMapGeoFenceLatLngModel model
)

添加高德经纬度地理围栏

Implementation

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