map<R> method
Maps the two decoded values in Dart without changing their SQL meaning.
Implementation
Selection<R> map<R>(R Function(A, B) mapper) => _Combined(
[$1, $2],
(read) =>
(row) => mapper(read[0](row) as A, read[1](row) as B),
);