ManualPaymentDialog constructor

ManualPaymentDialog({
  1. Key? key,
  2. required AppModel app,
  3. String? purpose,
  4. double? amount,
  5. String? ccy,
  6. String? payTo,
  7. String? country,
  8. String? bankIdentifierCode,
  9. String? payeeIBAN,
  10. String? bankName,
  11. PayedWithTheseDetails? payedWithTheseDetails,
})

Implementation

ManualPaymentDialog(
    {super.key,
    required this.app,
    this.purpose,
    this.amount,
    this.ccy,
    this.payTo,
    this.country,
    this.bankIdentifierCode,
    this.payeeIBAN,
    this.bankName,
    this.payedWithTheseDetails});