Dough constructor
const
Dough({
- Key? key,
- required Widget child,
- required DoughController controller,
- DoughTransformer? transformer,
- Axis? axis,
Creates a Dough widget.
Implementation
const Dough({
Key? key,
required this.child,
required this.controller,
this.transformer,
this.axis,
}) : super(key: key);