isProcessing property

bool isProcessing

Get weather this provider is processing an operation.

Implementation

bool get isProcessing => _processing;
void isProcessing=(bool value)

Set this provider as processing some operation.

Implementation

set isProcessing(bool value) {
  if (value != _processing) {
    _processing = value;
    _callWatchers();
  }
}