addGeoFenceArea static method

Future<void> addGeoFenceArea(
  1. String keyword,
  2. String customId
)

创建行政区划围栏

keyword 行政区划关键字

customId 与围栏关联的自有业务Id

Implementation

static Future<void> addGeoFenceArea(String keyword, String customId) async {
  await _channel.invokeMethod('addGeoFenceArea', {
    'keyword': keyword,
    'customId': customId,
  });
}