append method

CarvableString append(
  1. String value, {
  2. int? at,
})

Create a carving that will append a string when applied.

If argument at is not set, it will be append at the end of the string.

Implementation

CarvableString append(String value, {int? at}) =>
    this..carve(CarvingAppend(value, start: at));