attachView method

  1. @override
  2. @mustCallSuper
void attachView(
  1. V view
)
override

Implementation

@override
@mustCallSuper
void attachView(V view) {
  _hasView = true;
  _view = view;

  if (!hasInitialized) {
    _hasInitialized = true;
    initialize();
  }
}