fromJson static method
Implementation
static TCICQuitClassRepModel fromJson(Map<String, dynamic> json) {
return TCICQuitClassRepModel(
errorCode: json['error_code'] ?? 0,
errorMsg: json['error_msg'] ?? '',
requestId: json['request_id'] ?? '',
);
}