toPlainMap abstract method

Map<String, Object?> toPlainMap()

Deeply converts this dictionary into a representation of plain Dart objects and returns it.

Type conversion

Values of type:

  • null, int, double, bool, String, DateTime and Blob are not converted.
  • Array are converted to a list of type List<Object?> where each element has been recursively converted.
  • Dictionarys are converted to a map of type Map<String, Object?> where each value has been recursively converted.

Implementation

Map<String, Object?> toPlainMap();