UpiQrCode constructor

const UpiQrCode({
  1. Key? key,
  2. required String payeeVpa,
  3. required String payeeName,
  4. required String amount,
  5. String currency = 'INR',
  6. String? txnRef,
  7. String? merchantCode,
  8. double size = 200,
  9. Color color = const Color(0xFF000000),
})

Implementation

const UpiQrCode({
  super.key,
  required this.payeeVpa,
  required this.payeeName,
  required this.amount,
  this.currency = 'INR',
  this.txnRef,
  this.merchantCode,
  this.size = 200,
  this.color = const Color(0xFF000000),
});