insertBoolean method

MutableArray insertBoolean(
  1. int index,
  2. bool value
)

Implementation

MutableArray insertBoolean(int index, bool value) {
  _data.insert(index, value);
  return this;
}