Edit constructor

const Edit({
  1. EditType? type,
  2. String? delete,
  3. String? insert,
})

Returns a new Edit instance.

Implementation

const Edit({
  this.type,
  this.delete,
  this.insert,
});