UpiAccount.fromJson constructor

UpiAccount.fromJson(
  1. Map<String, dynamic> json
)

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']
);