Price constructor

Price(
  1. {required _PriceObject object,
  2. required String id,
  3. required bool active,
  4. required String currency,
  5. required String product,
  6. required PriceType type,
  7. required int unitAmount}
)

Implementation

Price({
  required this.object,
  required this.id,
  required this.active,
  required this.currency,
  required this.product,
  required this.type,
  required this.unitAmount,
});