KnotEvent constructor
KnotEvent({})
Initializes a KnotEvent object.
- Parameters:
event: The event code.environment: The environment which the event propagated from.merchant: The merchant name.merchantId: The merchant ID.metaData: Additional metadata in dictionary format.taskId: The associated task identifier.
Implementation
KnotEvent({
required this.environment,
required this.event,
required this.merchant,
required this.merchantId,
required this.metaData,
required this.product,
required this.taskId
});