state property

Implementation

WebFWidgetElementState? get state {
  final stateFinder = _widgetElementStates.where((state) => state.mounted == true);
  return stateFinder.isEmpty ? null : stateFinder.last;
}