isSupportPhoneFeature method
Determine if the session supports join by phone or not.
Return true indicates join by phone is supported, otherwise false.
Implementation
@override
Future<bool> isSupportPhoneFeature() async {
return await methodChannel
.invokeMethod<bool>('isSupportPhoneFeature')
.then<bool>((bool? value) => value ?? false);
}