encode static method
Implementation
static Map<String, dynamic> encode(EncryptedFinancialInstitutionInformation value) {
Map<String, dynamic> entityAsMap = {
"name" : value.name,
"key" : value.key,
"bankAccount" : value.bankAccount,
"bic" : value.bic,
"proxyBankAccount" : value.proxyBankAccount,
"proxyBic" : value.proxyBic,
"preferredFiiForPartners" : value.preferredFiiForPartners.map((x0) => x0).toList(),
"encryptedSelf" : value.encryptedSelf
};
return entityAsMap;
}