UpiAccount.fromJson constructor
Implementation
factory UpiAccount.fromJson(Map<String, dynamic> json) => UpiAccount(
accountNumber: json['account_number'],
bankLogoUrl: json['bank_logo_url'],
bankName: json['bank_name'],
bankPlaceholderUrl: json['bankPlaceholderUrl'],
ifsc: json['ifsc'],
pinLength: json['pinLength']
);