saveAll method
Implementation
Future<List<RowData?>> saveAll(List<M> items, {SQLExecutor? executor}) async {
if (items.isEmpty) return const [];
List<RowData?> ls = [];
for (M item in items) {
ls << await save(item, executor: executor);
}
return ls;
}