DocumentStatusMessage constructor

const DocumentStatusMessage({
  1. required String documentId,
  2. Snapshot? snapshot,
  3. List<Change>? changes,
})

Constructor

Implementation

const DocumentStatusMessage({
  required String documentId,
  this.snapshot,
  this.changes,
}) : super(MessageType.documentStatus, documentId);