setTags method

Future<void> setTags (Map tags)

Associates device with given tags. If setTags request fails tags will be resent on the next application launch.

Implementation

Future<void> setTags(Map tags) async {
  await _channel.invokeMethod("setTags", {"tags" : tags});
}