setString abstract method

void setString(
  1. String? value, {
  2. required int at,
})

Sets a String at the given index.

Throws a RangeError if the index is ouf of range.

Implementation

void setString(String? value, {required int at});