supportsAuthentication property Null safety
Implementation
static Future<bool> get supportsAuthentication async {
if (Platform.isLinux || Platform.isMacOS || Platform.isIOS || Platform.isAndroid) {
return await _channel.invokeMethod('supportsAuthentication');
}
return false;
}