initialize static method
Implementation
static Future<void> initialize({
String? androidLicenseKey,
String? iosLicenseKey,
String? webLicenseKey,
bool? useLegacy,
}) async {
Pspdfkit.useLegacy = useLegacy ?? false;
await PspdfkitFlutterPlatform.instance
.setLicenseKeys(androidLicenseKey, iosLicenseKey, webLicenseKey);
}