TossPayments constructor

const TossPayments({
  1. Key? key,
  2. required String clientKey,
  3. required PaymentData data,
  4. required dynamic success,
  5. required dynamic fail,
})

Implementation

const TossPayments(
    {Key? key,
    required this.clientKey,
    required this.data,
    required this.success,
    required this.fail})
    : super(key: key);