ProfilesRestClient constructor

ProfilesRestClient({
  1. bool sandbox = false,
  2. required String apiKey,
  3. required String secretKey,
  4. required String passphrase,
})

Implementation

ProfilesRestClient({
  bool sandbox = false,
  required String apiKey,
  required String secretKey,
  required String passphrase,
}) : super(
        sandbox: sandbox,
        apiKey: apiKey,
        secretKey: secretKey,
        passphrase: passphrase,
      );