toPlainList abstract method

List<Object?> toPlainList()

Deeply converts this array 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

List<Object?> toPlainList();