removeTags static method

Future<bool?> removeTags(
  1. List<String> tags
)

移除标签

Implementation

static Future<bool?> removeTags(List<String> tags) async {
  return await _channel.invokeMethod(_METHOD_REMOVE_TAG, tags);
}