batch method

  1. @override
WriteBatchPlatform batch()

Creates a write batch, used for performing multiple writes as a single atomic operation.

Unlike transactions, write batches are persisted offline and therefore are preferable when you don’t need to condition your writes on read data.

Implementation

@override
WriteBatchPlatform batch() => WriteBatchWeb(_delegate);