setTags static method

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

Sets a List of tags which will be sent along with every exception. This will be merged with any other tags passed in sendException and sendCustom.

Set to null to clear the value.

Implementation

static Future<void> setTags(List<String>? tags) async {
  Settings.tags = tags;
}