KnotSuccess constructor

KnotSuccess({
  1. required String merchant,
  2. required Product product,
})

Initializes a KnotSuccess object.

  • Parameters:
    • merchant: The merchant associated with the event (if applicable).
    • product: Knot Product name.

Implementation

KnotSuccess({
  required this.merchant,
  required this.product
});