loading property

String get loading

Implementation

String get loading => getAttribute(LOADING) ?? '';
set loading (String value)

Implementation

set loading(String value) {
  internalSetAttribute(SCALING, value);
  if (_isInLazyLoading) {
    _removeIntersectionChangeListener();
  }
}