TrackCustomAppEventArgs constructor

TrackCustomAppEventArgs({
  1. required String category,
  2. required String action,
  3. String? label,
  4. List<CustomEventProperty>? properties,
})

Implementation

TrackCustomAppEventArgs({
  required this.category,
  required this.action,
  this.label,
  this.properties,
});