initialize method

  1. @override
void initialize()
override

Initialize the state

Everytime calling this will rebuild the state and notify the listeners.

Implementation

@override
void initialize() {
  if (!initialized) {
    _skipFirstNotification = true;
  }
  try {
    _source.initialize();
  } on AccessWhileLoadingError {
    _skipFirstNotification = false;
  }
}