LabeledPrice constructor

const LabeledPrice({
  1. required String label,
  2. required int amount,
})

Labeled Price constructor.

Implementation

const LabeledPrice({required this.label, required this.amount}) : super._();