CommunityChatAdded constructor

const CommunityChatAdded({
  1. @JsonKey.new(name: 'community') required Community community,
})

Creates a new CommunityChatAdded object.

Implementation

const factory CommunityChatAdded({
  /// The new community to which the chat belongs
  @JsonKey(name: 'community') required Community community,
}) = _CommunityChatAdded;