GetRelatingEventsResponse.fromJson constructor
Implementation
GetRelatingEventsResponse.fromJson(Map<String, Object?> json)
: chunk = (json['chunk'] as List)
.map((v) => SDNEvent.fromJson(v as Map<String, Object?>))
.toList(),
nextBatch = ((v) => v != null ? v as String : null)(json['next_batch']),
prevBatch = ((v) => v != null ? v as String : null)(json['prev_batch']);