isSupportPhoneFeature method

  1. @override
Future<bool> isSupportPhoneFeature()
override

Implementation

@override
Future<bool> isSupportPhoneFeature() async {
  return await methodChannel
      .invokeMethod<bool>('isSupportPhoneFeature')
      .then<bool>((bool? value) => value ?? false);
}