setTags static method

Future<void> setTags(
  1. List<String> tags
)

Sets ticket tags.

Implementation

static Future<void> setTags(List<String> tags) async {
  await _channel.invokeMethod('setTags', {
    'tags': tags,
  });
}