EncryptedFinancialInstitutionInformation.fromJSON constructor

EncryptedFinancialInstitutionInformation.fromJSON(
  1. Map<String, dynamic> data
)

Implementation

factory EncryptedFinancialInstitutionInformation.fromJSON(Map<String, dynamic> data) {
	return EncryptedFinancialInstitutionInformation(
		name: (data["name"] as String?),
		key: (data["key"] as String?),
		bankAccount: (data["bankAccount"] as String?),
		bic: (data["bic"] as String?),
		proxyBankAccount: (data["proxyBankAccount"] as String?),
		proxyBic: (data["proxyBic"] as String?),
		preferredFiiForPartners: (data["preferredFiiForPartners"] as List<dynamic>).map((x0) => (x0 as String) ).toSet(),
		encryptedSelf: (data["encryptedSelf"] as Base64String?)
	);
}