map<R> method
Maps the five decoded values in Dart after the query executes.
Implementation
Selection<R> map<R>(R Function(A, B, C, D, E) mapper) => _Combined(
[$1, $2, $3, $4, $5],
(read) =>
(row) => mapper(
read[0](row) as A,
read[1](row) as B,
read[2](row) as C,
read[3](row) as D,
read[4](row) as E,
),
);