NumberTile constructor
const
NumberTile({
- Key? key,
- required int number,
- double horizontalSpacing = 8,
- double verticalSpacing = 4,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- Widget? child,
- TextStyle? numberStyle,
Implementation
const NumberTile({
Key? key,
required this.number,
this.horizontalSpacing = 8,
this.verticalSpacing = 4,
this.margin,
this.padding,
this.child,
this.numberStyle,
}) : super(key: key);