RapydClient constructor

RapydClient(
  1. String _accessKey,
  2. String _secretKey
)

The client for getting access to all the Rapyd APIs.

Provide the Rapyd access key and the secret key while initializing the client. For example:

final rapydClient = RapydClient('<access_key>', '<secret_key>');

It's recommended to do the initialization globally inside a Flutter app, so that you can access the rapydClient object from any page.

Implementation

RapydClient(this._accessKey, this._secretKey);