isPhone method

  1. @override
Future<bool?> isPhone()
override

Implementation

@override
Future<bool?> isPhone() async {
  final isPhone = await methodChannel.invokeMethod<bool>('isPhone');
  return isPhone;
}