Institution class

Institution (Bank) Data Model for Nordigen

Contains the id of the Institution, its name, bic, totalTransactionDays and the countries associated with the Institution.

Constructors

Institution({required String id, required String name, required List<String> countries, String bic = '', int transactionTotalDays = 90, String logoURL = ''})
const
Institution.fromMap(dynamic fetchedMap)
For easy Data Model Generation from Map fetched by querying Nordigen.
factory

Properties

bic String
BIC of the Institution.
final
countries List<String>
Countries associated with the Institution
final
hashCode int
The hash code for this object.
no setterinherited
id String
Identifier of this particular Institution
final
logoURL String
URL of the Logo of the Institution as a String.
final
name String
Institution Name
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
transactionTotalDays int
Represents the total transaction days for the Institution.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>
Forms a Map of String keys and dynamic values from Class Data.
toString() String
Returns the class data converted to a map as a Serialized JSON String.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited