RejectedLogEventsInfo.fromJson constructor

RejectedLogEventsInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RejectedLogEventsInfo.fromJson(Map<String, dynamic> json) {
  return RejectedLogEventsInfo(
    expiredLogEventEndIndex: json['expiredLogEventEndIndex'] as int?,
    tooNewLogEventStartIndex: json['tooNewLogEventStartIndex'] as int?,
    tooOldLogEventEndIndex: json['tooOldLogEventEndIndex'] as int?,
  );
}