Message constructor

Message({
  1. String? historyId,
  2. String? id,
  3. String? internalDate,
  4. List<String>? labelIds,
  5. MessagePart? payload,
  6. String? raw,
  7. int? sizeEstimate,
  8. String? snippet,
  9. String? threadId,
})

Implementation

Message({
  this.historyId,
  this.id,
  this.internalDate,
  this.labelIds,
  this.payload,
  this.raw,
  this.sizeEstimate,
  this.snippet,
  this.threadId,
});