AccountMetaData class

Nordigen Account Meta Data Model

Refer https://nordigen.com/en/docs/account-information/overview/parameters-and-responses/

Contains the id of the Bank Account, its created and lastAccessed date and time as ISO String, iban, status and the institutionID identifiying its Institution.

Constructors

AccountMetaData({required String id, String? created, String? lastAccessed, required String iban, required String institutionID, String status = ''})
AccountMetaData.fromMap(dynamic fetchedMap)
For easy Data Model Generation from Map fetched by querying Nordigen.
factory

Properties

created String
The date & time at which the account object was created.
final
hashCode int
The hash code for this object.
no setterinherited
iban String
The Account IBAN
final
id String
The ID of this Account, used to refer to this account in other API calls.
final
institutionID String
The ID of the Institution (bank) associated with this account.
final
lastAccessed String?
The date & time at which the account object was last accessed.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
status String
The processing status of this account.
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