initialize method

void initialize({
  1. String? key,
  2. String? secret,
  3. String? packageName,
  4. bool? testMode,
})

initialize the plugin with your public key

Implementation

void initialize(
    {String? key, String? secret, String? packageName, bool? testMode}) {
  apiKey = key;
  secretKey = secret;
  package = packageName;
  test = testMode;
}