executeBatch abstract method

Future<List<Object?>> executeBatch(
  1. void operations(
    1. SqfliteBatch batch
    ), {
  2. bool? exclusive,
  3. bool? noResult,
  4. bool? continueOnError,
})

Implementation

Future<List<Object?>> executeBatch(
  void Function(SqfliteBatch batch) operations, {
  bool? exclusive,
  bool? noResult,
  bool? continueOnError,
});