PriceRow constructor

const PriceRow({
  1. Key? key,
  2. required String label,
  3. String? subtitle,
  4. void onChange()?,
  5. bool enabled = true,
  6. Price price = Price.zero,
})

Implementation

const PriceRow({
  super.key,
  required this.label,
  this.subtitle,
  this.onChange,
  this.enabled = true,
  this.price = Price.zero,
});