BatchGetDocumentsResponse constructor

BatchGetDocumentsResponse({
  1. Document? found,
  2. String? missing,
  3. Uint8List? transaction,
  4. Timestamp? readTime,
})

Implementation

BatchGetDocumentsResponse({
  this.found,
  this.missing,
  Uint8List? transaction,
  this.readTime,
}) : transaction = transaction ?? Uint8List(0),
     super(fullyQualifiedName);