build method

  1. @override
Widget build(
  1. BuildContext context
)
inherited

Build the widget underneath this widget in the tree

Implementation

@override
Widget build(BuildContext context) {
  if (onHover != null) {
    onHover!.setCell(_onHoverCell(context));
  }

  if (onFocusChange != null) {
    onFocusChange!.setCell(_onFocusChangeCell(context));
  }

  return _buildWrappedWidget(context);
}