RejectedLogEventsInfo.fromJson constructor
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?,
);
}