AmountTextField constructor

const AmountTextField({
  1. required double value,
  2. required dynamic onChanged(
    1. String
    ),
  3. required dynamic onSubmitted(
    1. String
    ),
  4. required VoidCallback onTapIncrementButton,
  5. bool allowDecimal = false,
  6. Widget? suffix,
  7. Key? key,
})

Implementation

const AmountTextField({
  required this.value,
  required this.onChanged,
  required this.onSubmitted,
  required this.onTapIncrementButton,
  this.allowDecimal = false,
  this.suffix,
  Key? key,
}) : super(key: key);