TPVBankAccount constructor

TPVBankAccount({
  1. String? account_number,
  2. String? ifsc,
  3. String? bank_name,
})

Implementation

TPVBankAccount({
  this.account_number,
  this.ifsc,
  this.bank_name,

});