batch method
void
batch(
- void action()
Implementation
void batch(void Function() action) {
beginBatch();
try {
action();
} finally {
endBatch();
}
}
void batch(void Function() action) {
beginBatch();
try {
action();
} finally {
endBatch();
}
}