Term constructor

Term({
  1. int offset = 0,
  2. String value = "",
})

Creates a Term instance.

Implementation

Term({
  this.offset = 0,
  this.value = "",
});