Memory constructor

Memory({
  1. Timestamp? expireTime,
  2. Duration? ttl,
  3. String name = '',
  4. String displayName = '',
  5. String description = '',
  6. Timestamp? createTime,
  7. Timestamp? updateTime,
  8. required String fact,
  9. required Map<String, String> scope,
})

Implementation

Memory({
  this.expireTime,
  this.ttl,
  this.name = '',
  this.displayName = '',
  this.description = '',
  this.createTime,
  this.updateTime,
  required this.fact,
  required this.scope,
}) : super(fullyQualifiedName);