ApiKey constructor

ApiKey({
  1. DateTime? createdDate,
  2. String? customerId,
  3. String? description,
  4. bool? enabled,
  5. String? id,
  6. DateTime? lastUpdatedDate,
  7. String? name,
  8. List<String>? stageKeys,
  9. Map<String, String>? tags,
  10. String? value,
})

Implementation

ApiKey({
  this.createdDate,
  this.customerId,
  this.description,
  this.enabled,
  this.id,
  this.lastUpdatedDate,
  this.name,
  this.stageKeys,
  this.tags,
  this.value,
});