HighchartsView constructor

HighchartsView({
  1. Key? key,
  2. String? body,
  3. bool debug = false,
  4. String? foot,
  5. String? head,
  6. List<String> javaScriptModules = const [],
  7. bool keepAlive = true,
  8. Widget onError(
    1. HighchartsView,
    2. Object?
    )?,
  9. dynamic onLoaded(
    1. HighchartsView
    )?,
  10. Widget onLoading(
    1. HighchartsView
    )?,
  11. void onMounted(
    1. HighchartsView
    )?,
})

Implementation

HighchartsView({
  super.key,
  this.body,
  this.debug = false,
  this.foot,
  this.head,
  this.javaScriptModules = const [],
  this.keepAlive = true,
  this.onError,
  this.onLoaded,
  this.onLoading,
  this.onMounted,
}) {
  _stateBridge = _HighchartsViewStateBridge(this);
}