manyTo<T> method

Future<List<T>> manyTo<T>(
  1. T converter(
    1. Map v
    )
)

Returns a row found by executing statement

Implementation

Future<List<T>> manyTo<T>(T converter(Map v)) async =>
    (await adapter.find(_st)).map(converter).toList();