UBillInfoResponse.fromMap constructor

UBillInfoResponse.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UBillInfoResponse.fromMap(Map<String, dynamic> json) => UBillInfoResponse(
  billId: json["billId"],
  paymentId: json["paymentId"],
  caseCode: json["caseCode"],
  companyCode: json["companyCode"],
  serviceType: json["serviceType"],
  checkDigit: json["checkDigit"],
  companyName: json["companyName"],
  serviceName: json["serviceName"],
  billAmount: json["billAmount"],
  yearDigit: json["yearDigit"],
  periodCode: json["periodCode"],
  controlDigit1: json["controlDigit1"],
  controlDigit2: json["controlDigit2"],
  warnings: List<String>.from(json["warnings"]!.map((dynamic x) => x)),
  isValid: json["isValid"],
);