WrapperSessionSdkInitializationRequest.fromJson constructor

WrapperSessionSdkInitializationRequest.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory WrapperSessionSdkInitializationRequest.fromJson(Map<String, dynamic> json) => WrapperSessionSdkInitializationRequest(
    assetPathPrefix: json["assetPathPrefix"],
    cacheConfig: json["cacheConfig"] == null ? null : WrapperSessionSdkInitializationCacheConfig.fromJson(json["cacheConfig"]),
    licenseKey: json["licenseKey"],
);