map<T> method

List<T> map<T>(
  1. T mapper(
    1. Map<String, dynamic> row
    )
)

Maps every row of this page to T.

Implementation

List<T> map<T>(T Function(Map<String, dynamic> row) mapper) =>
    rows.map(mapper).toList();