dictionary abstract method

  1. @override
MutableDictionary? dictionary(
  1. int index
)
override

Returns the element at the given index as a MutableDictionary.

Returns null if the element is not a of the expected typ or it is null.

Throws a RangeError if the index is ouf of range.

Implementation

@override
MutableDictionary? dictionary(int index);