PPOptions constructor

  1. @JsonSerializable(fieldRename: FieldRename.snake, explicitToJson: true)
const PPOptions({
  1. required String id,
  2. required bool selected,
  3. PPShippingType? type,
  4. PPUnitAmount? unitAmount,
})

Implementation

@JsonSerializable(fieldRename: FieldRename.snake, explicitToJson: true)
const factory PPOptions({
  required String id,
  required bool selected,
  PPShippingType? type,
  PPUnitAmount? unitAmount,
}) = _PPOptions;