Citation constructor

Citation({
  1. int startIndex = 0,
  2. int endIndex = 0,
  3. String uri = '',
  4. String title = '',
  5. String license = '',
  6. Date? publicationDate,
})

Implementation

Citation({
  this.startIndex = 0,
  this.endIndex = 0,
  this.uri = '',
  this.title = '',
  this.license = '',
  this.publicationDate,
}) : super(fullyQualifiedName);