SaleInfo constructor

const SaleInfo(
  1. {required String country,
  2. required String saleability,
  3. required bool isEbook}
)

Implementation

const SaleInfo({
  required this.country,
  required this.saleability,
  required this.isEbook,
});