call method
Implementation
Future<SecurityResult<void>> call({required bool enable}) {
return enable
? _repository.enableProtection()
: _repository.disableProtection();
}
Future<SecurityResult<void>> call({required bool enable}) {
return enable
? _repository.enableProtection()
: _repository.disableProtection();
}