ProductsClient constructor

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

Implementation

ProductsClient({
  this.sandbox = false,
  required this.apiKey,
  required this.secretKey,
  required this.passphrase,
}) {
  _productsRestClient = ProductsRestClient(
    sandbox: sandbox,
    apiKey: apiKey,
    secretKey: secretKey,
    passphrase: passphrase,
  );
}