addChannel method

Future<bool> addChannel({
  1. required List<String> channels,
  2. String? role,
  3. bool? absorbDTMF,
  4. bool? mute,
})

Implementation

Future<bool> addChannel(
    {required List<String> channels,
    String? role,
    bool? absorbDTMF,
    bool? mute}) async {
  var resp = BridgesAPI.addChannel(id, channels);
  return false;
}