toJson method

Map<String, dynamic> toJson()

Returns a Map representing this DtoChatItem.

Implementation

Map<String, dynamic> toJson() => switch (runtimeType) {
  const (DtoChatMessage) => (this as DtoChatMessage).toJson(),
  const (DtoChatCall) => (this as DtoChatCall).toJson(),
  const (DtoChatInfo) => (this as DtoChatInfo).toJson(),
  const (DtoChatForward) => (this as DtoChatForward).toJson(),
  _ => throw UnimplementedError(runtimeType.toString()),
};