Dough constructor

const Dough({
  1. Key? key,
  2. required Widget child,
  3. required DoughController controller,
  4. DoughTransformer? transformer,
  5. Axis? axis,
})

Creates a Dough widget.

Implementation

const Dough({
  Key? key,
  required this.child,
  required this.controller,
  this.transformer,
  this.axis,
}) : super(key: key);