listModel method
Implementation
Future<List<M>> listModel({Where? where, Object? groupBy, Object? having, Object? window, Object? orderBy, int? limit, int? offset, SQLExecutor? executor}) async {
final r = await this.query(where: where, groupBy: groupBy, having: having, window: window, orderBy: orderBy, limit: limit, offset: offset, executor: executor);
return r.listModels(creator);
}