selectOutbound method
Selects an outbound for a specific group.
Implementation
@override
Future<void> selectOutbound({required String groupTag, required String outboundTag}) async {
return await methodChannel.invokeMethod('selectOutbound', {
"groupTag": groupTag,
"outboundTag": outboundTag,
});
}