batch method
Implementation
Future<void> batch(void Function(BatchTable batch) executor) {
return database.batch((batch) {
executor(batch.withTable(table));
});
}
Future<void> batch(void Function(BatchTable batch) executor) {
return database.batch((batch) {
executor(batch.withTable(table));
});
}