NumberButton constructor

const NumberButton(
  1. int number,
  2. double buttonElevation,
  3. double buttonRadius,
  4. Color colorPrimary,
  5. Color colorBackGround,
  6. double fontSize,
  7. String fontFamily,
  8. dynamic onSelect(
    1. BuildContext,
    2. int
    ),
)

Implementation

const NumberButton(
  this.number,
  this.buttonElevation,
  this.buttonRadius,
  this.colorPrimary,
  this.colorBackGround,
  this.fontSize,
  this.fontFamily,
  this.onSelect,
);