ActorGetStatusOutput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const ActorGetStatusOutput({
  1. required bool chatDisabled,
  2. required bool canCreateGroups,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ActorGetStatusOutput({
  /// True when the viewer's account is disabled and cannot actively participate in chat.
  required bool chatDisabled,

  /// Whether the viewer's account is allowed to create group chats. New accounts are restricted from creating groups.
  required bool canCreateGroups,

  Map<String, dynamic>? $unknown,
}) = _ActorGetStatusOutput;