build method

String build(
  1. String a,
  2. String b
)

Builds the tape of characters to interpolate to and from.

Implementation

String build(String a, String b) =>
    repeatCharacters ? _repeatTape(a, b) : _noRepeatTape(a, b);