transactionalBulkOperation method
Implementation
@override
Future<bool> transactionalBulkOperation(
Future<bool> Function() action,
) async {
try {
return await transaction(() async => await action());
} catch (e) {
rethrow;
}
}
@override
Future<bool> transactionalBulkOperation(
Future<bool> Function() action,
) async {
try {
return await transaction(() async => await action());
} catch (e) {
rethrow;
}
}