BatchOperation constructor

const BatchOperation({
  1. required BatchOperationType type,
  2. Map<String, dynamic>? document,
  3. Map<String, dynamic>? filter,
  4. Map<String, dynamic>? update,
})

Creates a new BatchOperation

Implementation

const BatchOperation({
  required this.type,
  this.document,
  this.filter,
  this.update,
});