IsbnEntity constructor

IsbnEntity(
  1. String rawValue, {
  2. required String isbn,
})

Constructor to create an instance of IsbnEntity.

Implementation

IsbnEntity(String rawValue, {required this.isbn})
    : super(rawValue: rawValue, type: EntityType.isbn);