findMany method

Future<List<ModelType>> findMany(
  1. Find statement
)

Returns a list of rows found by executing statement

Implementation

Future<List<ModelType>> findMany(Find statement) async {
  return (await adapter.find(statement)).map(fromMap).toList();
}