setLicenseKeys static method

  1. @Deprecated('Use Nutrient.initialize from package:nutrient_flutter/bindings.dart ' 'instead.')
Future<void> setLicenseKeys(
  1. String? androidLicenseKey,
  2. String? iOSLicenseKey,
  3. String? webLicenseKey
)

Sets the license keys for both platforms.

Implementation

@Deprecated(
    'Use Nutrient.initialize from package:nutrient_flutter/bindings.dart '
    'instead.')
static Future<void> setLicenseKeys(String? androidLicenseKey,
        String? iOSLicenseKey, String? webLicenseKey) async =>
    NutrientFlutterPlatform.instance
        .setLicenseKeys(androidLicenseKey, iOSLicenseKey, webLicenseKey);