toListOfMap method

List<Map<String, Object?>> toListOfMap(
  1. Iterable<Iterable<Object?>> rows
)

Converts rows to a list of Map.

Implementation

List<Map<String, Object?>> toListOfMap(Iterable<Iterable<Object?>> rows) =>
    rows.map(toMap).toList();