htmlWidget property

Widget htmlWidget

The Flutter widget that will contain the rendered Map. Used for caching.

Implementation

Widget get htmlWidget {
  if (_widget == null) {
    _widget = HtmlElementView(
      viewType: _getViewType(_viewId),
    );
  }
  return _widget!;
}