commit method

Future<BatchResult> commit()

Implementation

Future<BatchResult> commit() async {
  return (
    rawResult: await batch.commit(),
    changedTables: _tableChanges,
    tableUpdates: _updates,
    tableInserts: _inserts,
    tableDeletes: _deletes,
  );
}