setLicenseKeys static method

Future<void> setLicenseKeys(
  1. String? androidLicenseKey,
  2. String? iOSLicenseKey,
  3. String? webLicenseKey
)

Sets the license keys for both platforms.

Implementation

static Future<void> setLicenseKeys(String? androidLicenseKey,
        String? iOSLicenseKey, String? webLicenseKey) async =>
    PspdfkitFlutterPlatform.instance
        .setLicenseKeys(androidLicenseKey, iOSLicenseKey, webLicenseKey);