buildBinding method

  1. @override
void buildBinding()
override

Implementation

@override
void buildBinding() {
  /// Build this binding component
  /// create child's binding
  /// attach this
  child = null;
  var _childComponent = build(this);
  child = _childComponent.createBinding();
  child!.attachToParent(this);
  child!.buildBinding();
}