LabeledPrice constructor

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

Implementation

LabeledPrice({
  required this.label,
  required this.amount,
});