NUINumberPad constructor

NUINumberPad({
  1. int numOfDigits = 4,
  2. Color highlightColor = NUIColors.NUIAccent,
  3. TextStyle? inputTextStyle,
  4. TextStyle? valueTextStyle,
  5. TextStyle? inputActionStyle,
  6. Color defaultColor = NUIColors.NUITextGray,
  7. bool showEnteredNumbers = true,
  8. NUINumberPadOnDone? onDone,
})

Implementation

NUINumberPad({
  this.numOfDigits = 4,
  this.highlightColor = NUIColors.NUIAccent,
  this.inputTextStyle,
  this.valueTextStyle,
  this.inputActionStyle,
  this.defaultColor = NUIColors.NUITextGray,
  this.showEnteredNumbers = true,
  this.onDone
});