LogEntryOperation.fromJson constructor
Implementation
factory LogEntryOperation.fromJson(Map<String, dynamic> json) {
return LogEntryOperation(
id: json['id'] ?? '',
producer: json['producer'] ?? '',
first: json['first'] ?? false,
last: json['last'] ?? false,
);
}