BillingMeterEventCreateOptions constructor

const BillingMeterEventCreateOptions({
  1. required String eventName,
  2. List<String>? expand,
  3. String? identifier,
  4. required Map<String, String> payload,
  5. required DateTime timestamp,
})

Implementation

const BillingMeterEventCreateOptions({
  required this.eventName,
  this.expand,
  this.identifier,
  required this.payload,
  required this.timestamp,
});