Tapaywebview constructor

const Tapaywebview({
  1. Key? key,
  2. required String amountStr,
  3. required String apiUrl,
  4. required String encryptedData,
  5. required String iv,
  6. required String apiKey,
})

Implementation

const Tapaywebview({
  super.key,
  required this.amountStr,
  required this.apiUrl,
  required this.encryptedData,
  required this.iv,
  required this.apiKey,
});