WatchShape constructor

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

Implementation

const WatchShape({
  Key? key,
  this.builder,
  this.child,
})  : assert(builder != null || child != null),
      super(key: key);