isLoading property

  1. @override
bool isLoading
override

This value determines if a process is currently running and user needs to be notified about it. Reflected by the widgets built by this value.

Enforced by support widget LoadAware.

Typical usage within Obx or GetX widgets.

Implementation

@override
bool get isLoading => _isLoading.value;
  1. @override
  2. @protected
void isLoading=(bool value)
override

PROTECTED

Call within the scope of GetxControllerPlus to notify whether a process is currently running and user needs to be notified about it.

Implementation

@override
@protected
set isLoading(bool value,) => _isLoading.value = value;