VolumeRequestModel constructor

VolumeRequestModel({
  1. required String query,
  2. int? startIndex,
  3. int? maxResults,
  4. bool? epub,
  5. String? filter,
  6. String? printType,
  7. String? orderBy,
})

Implementation

VolumeRequestModel({
  required this.query,
  this.startIndex,
  this.maxResults,
  this.epub,
  this.filter,
  this.printType,
  this.orderBy,
});