build method

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

Wrap with RepaintBoundary to isolates repaints.

Implementation

@override
Widget build(BuildContext context) {
  return RepaintBoundary(
    key: key,
    child: buildWiredElement(),
  );
}