fromJson static method

LogItem fromJson(
  1. Map json
)

Implementation

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