isProcessing property
bool
get
isProcessing
Get weather this provider is processing an operation.
Implementation
bool get isProcessing => _processing;
set
isProcessing
(bool value)
Set this provider as processing some operation.
Implementation
set isProcessing(bool value) {
if (value != _processing) {
_processing = value;
_callWatchers();
}
}