sendRaw method
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);
}