InputAmount constructor

const InputAmount({
  1. Key? key,
  2. required String hintText,
  3. double? initialValue,
  4. void onChanged(
    1. double?
    )?,
  5. bool enabled = true,
})

Implementation

const InputAmount({
  super.key,
  required this.hintText,
  this.initialValue,
  this.onChanged,
  this.enabled = true,
});