toJson method

Map<String, dynamic> toJson()

Returns a Map representing this ChatItemQuote.

Implementation

Map<String, dynamic> toJson() => switch (runtimeType) {
  const (ChatMessageQuote) => (this as ChatMessageQuote).toJson(),
  const (ChatCallQuote) => (this as ChatCallQuote).toJson(),
  const (ChatInfoQuote) => (this as ChatInfoQuote).toJson(),
  _ => throw UnimplementedError(runtimeType.toString()),
};