insertDictionary abstract method

void insertDictionary(
  1. Dictionary? value, {
  2. required int at,
})

Inserts a Dictionary at the given index.

Throws a RangeError if the index is ouf of range.

Implementation

void insertDictionary(Dictionary? value, {required int at});