toJson method

Map<String, dynamic> toJson()

Returns a Map representing this ChatInfoAction.

Implementation

Map<String, dynamic> toJson() => switch (runtimeType) {
  const (ChatInfoActionAvatarUpdated) =>
    (this as ChatInfoActionAvatarUpdated).toJson(),
  const (ChatInfoActionCreated) => (this as ChatInfoActionCreated).toJson(),
  const (ChatInfoActionMemberAdded) =>
    (this as ChatInfoActionMemberAdded).toJson(),
  const (ChatInfoActionMemberRemoved) =>
    (this as ChatInfoActionMemberRemoved).toJson(),
  const (ChatInfoActionNameUpdated) =>
    (this as ChatInfoActionNameUpdated).toJson(),
  _ => throw UnimplementedError(runtimeType.toString()),
};