WrapperSessionParameters.fromJson constructor
WrapperSessionParameters.fromJson(
- Map<String, dynamic> json
)
Implementation
factory WrapperSessionParameters.fromJson(Map<String, dynamic> json) => WrapperSessionParameters(
exportCachedEventsResponse: json["exportCachedEventsResponse"] == null ? null : WrapperSessionExportCachedEventsResponse.fromJson(json["exportCachedEventsResponse"]),
scanResponse: json["scanResponse"] == null ? null : WrapperSessionScanResponse.fromJson(json["scanResponse"]),
scanResultsResponse: json["scanResultsResponse"] == null ? null : WrapperSessionScanResultsResponse.fromJson(json["scanResultsResponse"]),
scanStartRequest: json["scanStartRequest"] == null ? null : WrapperSessionScanStartRequest.fromJson(json["scanStartRequest"]),
scanStopRequest: json["scanStopRequest"] == null ? null : WrapperSessionScanStopRequest.fromJson(json["scanStopRequest"]),
scanViewConfigOptions: json["scanViewConfigOptions"] == null ? null : WrapperSessionScanViewConfigOptions.fromJson(json["scanViewConfigOptions"]),
sdkInitializationRequest: json["sdkInitializationRequest"] == null ? null : WrapperSessionSdkInitializationRequest.fromJson(json["sdkInitializationRequest"]),
sdkInitializationResponse: json["sdkInitializationResponse"] == null ? null : WrapperSessionSdkInitializationResponse.fromJson(json["sdkInitializationResponse"]),
ucrReportRequest: json["ucrReportRequest"] == null ? null : WrapperSessionUcrReportRequest.fromJson(json["ucrReportRequest"]),
ucrReportResponse: json["ucrReportResponse"] == null ? null : WrapperSessionUcrReportResponse.fromJson(json["ucrReportResponse"]),
);