trackTag method

Future<void> trackTag(
  1. String eventName,
  2. Map<String, String>? attributes
)

Implementation

Future<void> trackTag(
    String eventName, Map<String, String>? attributes) async {
  return _channel.invokeMethod(
      'predict.trackTag', {'eventName': eventName, 'attributes': attributes});
}