toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
_json[r'id'] = id;
_json[r'logs'] = logs;
_json[r'message'] = message;
_json[r'type'] = type;
_json[r'instruction'] = instruction;
return _json;
}