sendRaw method

Future<void> sendRaw(
  1. String hitType,
  2. Map<String, dynamic> args
)
inherited

Send raw data to analytics. Callers should generally use one of the typed methods (sendScreenView, sendEvent, ...).

Valid values for hitType are: 'pageview', 'screenview', 'event', 'transaction', 'item', 'social', 'exception', and 'timing'.

Implementation

Future<void> sendRaw(String hitType, Map<String, dynamic> args) {
  return _enqueuePayload(hitType, args);
}