CurrencyField constructor

const CurrencyField({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required void onChanged(
    1. CurrencyData?
    ),
})

Creates a CurrencyField widget.

Implementation

const CurrencyField({
  Key? key,
  this.width,
  this.height,
  required this.onChanged,
}) : super(key: key);