VoiceTarget constructor

VoiceTarget({
  1. required int id,
})

Implementation

VoiceTarget({required int id})
    : this.id = _assertInRange(id),
      this._users = <User>[],
      this._channels = <Channel>[],
      this._channelLinks = <bool>[],
      this._channelRecursive = <bool>[],
      this._aclGroups = <String>[];