paint method

  1. @override
void paint(
  1. Context context
)
override

Draw itself and its children, according to the calculated box.offset

Implementation

@override
void paint(Context context) {
  assert(_context != null);
  super.paint(_context!);
  paintChild(_context!);
}