LogEntryOperation.fromJson constructor

LogEntryOperation.fromJson(
  1. Map json_
)

Implementation

LogEntryOperation.fromJson(core.Map json_)
  : this(
      first: json_['first'] as core.bool?,
      id: json_['id'] as core.String?,
      last: json_['last'] as core.bool?,
      producer: json_['producer'] as core.String?,
    );