static LogItem fromJson(Map<dynamic, dynamic> json) { return LogItem( time: json['time'], level: json['level'], msg: json['msg'], tag: json['tag'], key: json['key'], ); }