JEntryAmount constructor

const JEntryAmount({
  1. Key? key,
  2. required String title,
  3. required TextEditingController controller,
  4. Color color = JColors.colorLabel,
  5. void onChanged(
    1. String integer,
    2. String decimal
    )?,
})

Implementation

const JEntryAmount({
  super.key,
  required this.title,
  required this.controller,
  this.color = JColors.colorLabel,
  this.onChanged,
});