getText method

String getText (int start, [ int end ])

Returns the text of the file from start to end (exclusive).

If end isn't passed, it defaults to the end of the file.

Implementation

String getText(int start, [int end]) =>
    new String.fromCharCodes(_decodedChars.sublist(start, end));