getTags static method

Future<List<String>?> getTags()

Gets all tags of reported feedback, bug or crash. Returns the list of tags.

Implementation

static Future<List<String>?> getTags() async {
  final tags = await _host.getTags();
  return tags?.cast<String>();
}