GstVerificationModel.fromJson constructor

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

Implementation

factory GstVerificationModel.fromJson(Map<String, dynamic> json) =>
    GstVerificationModel(
      gstNo: json["GstNo"] ?? '',
      gstDetails: GstDetails.fromJson(json["gstDetails"]),
      gstResponse: json["GSTResponse"],
      projectName: json["ProjectName"] ?? '',
      userId: json["UserId"] ?? '',
      username: json["Username"] ?? '',
      changeRequest: json["changeRequest"],
    );