CustomEvent constructor

CustomEvent({
  1. required String name,
  2. double? value,
  3. String? transactionId,
  4. String? interactionId,
  5. String? interactionType,
  6. Map<String, Object?>? properties,
})

Implementation

CustomEvent(
    {required this.name,
    this.value,
    this.transactionId,
    this.interactionId,
    this.interactionType,
    this.properties});