commit method

Future<void> commit()

Commits all of the writes in this write batch as a single atomic unit.

Calling this method prevents any future operations from being added.

Implementation

Future<void> commit() async {
  throw UnimplementedError('commit() is not implemented');
}