NumberTile constructor

const NumberTile({
  1. Key? key,
  2. required int number,
  3. double horizontalSpacing = 8,
  4. double verticalSpacing = 4,
  5. EdgeInsetsGeometry? margin,
  6. EdgeInsetsGeometry? padding,
  7. Widget? child,
  8. 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);