Biblio constructor

Biblio({
  1. String? volume,
  2. String? issue,
  3. String? firstPage,
  4. String? lastPage,
})

Implementation

Biblio({
  this.volume,
  this.issue,
  this.firstPage,
  this.lastPage,
});