registerAsVoiceTarget method

void registerAsVoiceTarget({
  1. required int id,
  2. bool recursive = false,
  3. bool followLinks = false,
})

Implementation

void registerAsVoiceTarget(
        {required int id, bool recursive: false, bool followLinks: false}) =>
    _client.registerVoiceTarget(
        target: new VoiceTarget(id: id)
          ..withChannel(
              channel: this, recursive: recursive, followLinks: followLinks));