BankVerificationRequestMessage.fromMap constructor
Implementation
factory BankVerificationRequestMessage.fromMap(Map<String, dynamic> map) {
return BankVerificationRequestMessage(
bankNumber: map['bank'],
bankAgency: map['agency'],
accountType: map['account_type'],
bankAccountNumber: map['account'],
automaticValidation: map['automatic_validation'],
);
}