method toString


String toString()

Returns a string representation of this object.

Source

String toString() {
  var kind = isInsert ? 'insert' : isRemove ? 'remove' : 'set';
  return '#<MapChangeRecord $kind $key from: $oldValue to: $newValue>';
}