Diagonal constructor
const
Diagonal({
- required List<
Widget> children, - DiagonalDirection direction = DiagonalDirection.bottomRight,
- DiagonalSize size = DiagonalSize.min,
- Key? key,
Implementation
const Diagonal({
required this.children,
this.direction = DiagonalDirection.bottomRight,
this.size = DiagonalSize.min,
Key? key,
}) : super(key: key);