Hook<T> constructor

Hook<T>(
  1. T value,
  2. Hookable hookableWidget
)

The private constructor of Hook<T>

Implementation

Hook(
  T value,
  this.hookableWidget,
) : this._value = value;