GetRelatingEventsResponse.fromJson constructor

GetRelatingEventsResponse.fromJson(
  1. Map<String, Object?> json
)

Implementation

GetRelatingEventsResponse.fromJson(Map<String, Object?> json)
  : chunk = (json['chunk'] as List)
        .map((v) => MatrixEvent.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']),
    recursionDepth = ((v) =>
        v != null ? v as int : null)(json['recursion_depth']);