UserChatBoosts constructor

const UserChatBoosts({
  1. @JsonKey(name: 'boosts') required List<ChatBoost> boosts,
})

Constructs a UserChatBoosts object.

Implementation

const factory UserChatBoosts({
  /// The list of boosts added to the chat by the user
  @JsonKey(name: 'boosts') required List<ChatBoost> boosts,
}) = _UserChatBoosts;