trackActionAndTextValue method

  1. @override
void trackActionAndTextValue(
  1. String name,
  2. String action,
  3. Object textValue
)

Track an action-and-value event with name and action and textValue.

Implementation

@override
void trackActionAndTextValue(String name, String action, Object textValue)
=> unawaited(track(name, <String, dynamic>{'Action': action, 'TextValue': textValue}));