sendTag static method

Future sendTag(
  1. String key,
  2. String value
)

Implementation

static Future sendTag(String key, String value) async {
  await _channel.invokeMethod('sendTag', {'key': key, 'value': value});
}