WrapperSessionUcrReportResponseFail.fromJson constructor

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

Implementation

factory WrapperSessionUcrReportResponseFail.fromJson(
        Map<String, dynamic> json) =>
    WrapperSessionUcrReportResponseFail(
      lastError: json["lastError"],
      responseErrorCode: json["responseErrorCode"],
      responseErrorMessage: json["responseErrorMessage"],
    );