init method

Future<void> init(
  1. String appKey,
  2. String secret,
  3. bool sandbox,
  4. String googleApiKey,
)

Implementation

Future<void> init(String appKey, String secret, bool sandbox, String googleApiKey) async {
  _AviConfiguration aviConfiguration = new _AviConfiguration();
  await aviConfiguration.setAppKey(appKey);
  await aviConfiguration.setSecret(secret);
  await aviConfiguration.setSandbox(sandbox);
  await aviConfiguration.setGoogleApiKey(googleApiKey);
}