initialize static method

Future<void> initialize({
  1. String? androidLicenseKey,
  2. String? iosLicenseKey,
  3. String? webLicenseKey,
})

Implementation

static Future<void> initialize({
  String? androidLicenseKey,
  String? iosLicenseKey,
  String? webLicenseKey,
}) async {
  await NutrientFlutterPlatform.instance
      .setLicenseKeys(androidLicenseKey, iosLicenseKey, webLicenseKey);
}