Skip to content

Instantly share code, notes, and snippets.

View ahmeddarafat's full-sized avatar

Ahmed Arafat ahmeddarafat

View GitHub Profile
import 'package:flutter/services.dart';
import 'package:local_auth/local_auth.dart';
class LocalAuthService {
LocalAuthService() {
_init();
}
final LocalAuthentication _localAuth = LocalAuthentication();
bool _isSupported = false;
bool get isSupported => _isSupported;