UpdateMarkerShow method

Future<void> UpdateMarkerShow(
  1. String key,
  2. bool is_show
)

Implementation

Future<void> UpdateMarkerShow(String key , bool is_show) async {
  if(_channel == null)return  ;
  if(key == null || key == "")return  ;//key不能为空
  return _channel?.invokeMethod('UpdateMarkerShow', { "key":key,"is_show":is_show});
}