toMap method

Map<String, Object?> toMap(
  1. Iterable<Object?> row
)

Converts row to a Map.

Implementation

Map<String, Object?> toMap(Iterable<Object?> row) =>
    Map<String, Object?>.fromEntries(toEntries(row));