addLabels method
Adds a dictionary as labels for the event. These labels will be sent for all the specified publishers. @param labels Labels to add
Implementation
Future<void> addLabels(Map<String, String> labels) {
var args = buildArguments();
args[Args.labels] = labels;
return _methodChannel.invokeMethod('addLabels', args);
}