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