WatchShape constructor

const WatchShape({
  1. Key? key,
  2. required WatchShapeBuilder builder,
  3. Widget? child,
})

Implementation

const WatchShape({
  Key? key,
  required this.builder,
  this.child,
}) : super(key: key);