initComponentInternal method

dynamic initComponentInternal(
  1. Map props,
  2. void _jsRedraw(), [
  3. RefMethod? ref,
  4. dynamic _jsThis,
  5. Map? context,
])
inherited

Implementation

initComponentInternal(Map props, void Function() _jsRedraw, [RefMethod? ref, dynamic _jsThis, Map? context]) {
  this._jsRedraw = _jsRedraw;
  this.ref = ref ?? _defaultRef;
  this._jsThis = _jsThis;
  _initContext(context);
  _initProps(props);
}