isLoaded property

bool isLoaded

Whether this component has completed its onLoad step.

Implementation

bool get isLoaded {
  return (_state != LifecycleState.uninitialized) &&
      (_state != LifecycleState.loading);
}