track method
Sends a named event with optional properties.
Implementation
@override
Future<void> track(String name, Map<String, Object?>? properties) =>
_guard('track', <String, Object?>{
'name': name,
if (properties != null) 'properties': properties,
});