Example constructor

Example({
  1. StoredContentsExample? storedContentsExample,
  2. String displayName = '',
  3. String exampleId = '',
  4. Timestamp? createTime,
})

Implementation

Example({
  this.storedContentsExample,
  this.displayName = '',
  this.exampleId = '',
  this.createTime,
}) : super(fullyQualifiedName);