canAuthenticate method

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

Implementation

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