executeBatch method
Implementation
@override
Future<void> executeBatch(List<BatchOperation> operations) async {
try {
await _database.batch((batch) {
for (final operation in operations) {
operation(batch);
}
});
} catch (e) {
throw DatabaseBridgeException(error: e);
}
}