BatchInsertResult constructor

const BatchInsertResult({
  1. required int insertedCount,
  2. required List<String> insertedIds,
})

Creates a new BatchInsertResult

Implementation

const BatchInsertResult({
  required this.insertedCount,
  required this.insertedIds,
});