Example constructor

Example({
  1. String? createTime,
  2. String? description,
  3. String? displayName,
  4. String? entryAgent,
  5. String? etag,
  6. bool? invalid,
  7. List<Message>? messages,
  8. String? name,
  9. String? updateTime,
})

Implementation

Example({
  this.createTime,
  this.description,
  this.displayName,
  this.entryAgent,
  this.etag,
  this.invalid,
  this.messages,
  this.name,
  this.updateTime,
});