CommonResultModel.fromJson constructor

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

Implementation

CommonResultModel.fromJson(Map<String, dynamic> json)
    : success = json["success"],
      resultCd = json["result_cd"],
      resultMsg = json["result_msg"];