batch method

Future<Batch> batch()

Implementation

Future<Batch> batch() async {
  final db = await getOpenDatabase();
  final batch = db.batch();
  return batch;
}