refresh method

  1. @override
  2. @mustCallSuper
Future<bool> refresh([
  1. bool notifyStateChanged = false
])
override

Implementation

@override
@mustCallSuper
Future<bool> refresh([bool notifyStateChanged = false]) async {
  if (notifyStateChanged) {
    clear();
    indicatorStatus = IndicatorStatus.fullScreenBusying;
    _onStateChanged(this);
  }
  return await _innerloadData();
}