fromJson static method
Implementation
static TCICLogParam fromJson(Map<String, dynamic> json) {
return TCICLogParam(sequence: json['sequence'], module: json['module'], action: json['action'], param: json['param'], ext: json['ext'], code: json['code'], desc: json['desc'], stack: json['stack'], report: json['report'], level: json['level']);
}