Proof constructor

Proof({
  1. String? start,
  2. int? startIndex,
  3. String? end,
  4. int? endIndex,
  5. String? anchor,
  6. List<Entry>? entries,
})

Implementation

Proof({
  this.start,
  this.startIndex,
  this.end,
  this.endIndex,
  this.anchor,
  this.entries,
});