NumericPadStyle constructor

const NumericPadStyle({
  1. TextStyle? style,
  2. double? buttonWidth = 48,
  3. double? buttonHeight = 48,
  4. EdgeInsetsGeometry? buttonPadding,
  5. BoxShape buttonShape = BoxShape.circle,
  6. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
})

Implementation

const NumericPadStyle({
  this.style,
  this.buttonWidth = 48,
  this.buttonHeight = 48,
  this.buttonPadding,
  this.buttonShape = BoxShape.circle,
  this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
});