addPOI method

Future<bool> addPOI(
  1. AMapPoiModel model
)

添加高德POI地理围栏

Implementation

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