insertBoolean abstract method

void insertBoolean(
  1. bool value, {
  2. required int at,
})

Inserts a bool at the given index.

Throws a RangeError if the index is ouf of range.

Implementation

// ignore: avoid_positional_boolean_parameters
void insertBoolean(bool value, {required int at});