Message constructor

Message({
  1. String? body,
  2. TimeInterval? displayInterval,
  3. String? header,
  4. String? id,
  5. String? kind,
  6. LocalizedString? localizedBody,
  7. LocalizedString? localizedHeader,
  8. String? messageType,
})

Implementation

Message({
  this.body,
  this.displayInterval,
  this.header,
  this.id,
  this.kind,
  this.localizedBody,
  this.localizedHeader,
  this.messageType,
});