copyWith method
Implementation
TaPayBankListModel copyWith({
String? responseCode,
String? message,
List<BankInfo>? info,
}) =>
TaPayBankListModel(
responseCode: responseCode ?? _responseCode,
message: message ?? _message,
info: info ?? _info,
);