NordigenAccountInfoAPI class

Encapsulation of the Nordigen Open Account Information API functions.

Requires either (as per https://ob.nordigen.com/user-secrets/):

  1. a Nordigen Access Token that has already been generated, to initialize using NordigenAccountInfoAPI constructor.

  2. a Nordigen secret_id and secret_key, to generate a new access token and initialize using NordigenAccountInfoAPI.fromSecret:

For more information about the API: https://nordigen.com/en/account_information_documenation/integration/quickstart_guide/

Available Extensions

Constructors

NordigenAccountInfoAPI({required String accessToken, Client? client})
Initialize the Nordigen API with a pre-generated Nordigen Access Token.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

createAccessToken({required String secretID, required String secretKey}) Future<Map<String, dynamic>>
Static functionality to generate a Nordigen Access Token using a Nordigen user secretID (secret_id) and secretKey (secret_key). JWT pair getter.
fromSecret({required String secretID, required String secretKey}) Future<NordigenAccountInfoAPI>
Initialize the Nordigen API with Access Token generated using Nordigen user secretID (secret_id) and secretKey (secret_key).