Key constructor

const Key({
  1. String? uid = "",
  2. String key = "",
  3. String? name,
  4. String? description,
  5. List<String> actions = defaultActions,
  6. List<String> indexes = defaultIndexes,
  7. DateTime? expiresAt,
  8. DateTime? createdAt,
  9. DateTime? updatedAt,
})

Implementation

const Key({
  this.uid = "",
  this.key = "",
  this.name,
  this.description,
  this.actions = defaultActions,
  this.indexes = defaultIndexes,
  this.expiresAt,
  this.createdAt,
  this.updatedAt,
});