EditionDTO constructor

EditionDTO({
  1. String? key = '',
  2. String workKey = '',
  3. String? title = '',
  4. List<String>? publishers = const [],
  5. List<int> covers = const [],
  6. String? publishDate = '',
  7. List<String>? authors,
})

Implementation

EditionDTO(
    {this.key = '',
    this.workKey = '',
    this.title = '',
    this.publishers = const [],
    this.covers = const [],
    this.publishDate = '',
    this.authors});