Card91Transaction constructor

Card91Transaction({
  1. Key? key,
  2. required String cardId,
  3. required String token,
  4. required String template,
  5. required String env,
  6. required dynamic onDataResponse(
    1. String
    ),
})

Implementation

Card91Transaction(
    {Key? key,
      required this.cardId,
      required this.token,
      required this.template,
      required this.env,
      required this.onDataResponse})
    : super(key: key);