Activation constructor

Activation({
  1. String? activationId,
  2. DateTime? createdDate,
  3. String? defaultInstanceName,
  4. String? description,
  5. DateTime? expirationDate,
  6. bool? expired,
  7. String? iamRole,
  8. int? registrationLimit,
  9. int? registrationsCount,
  10. List<Tag>? tags,
})

Implementation

Activation({
  this.activationId,
  this.createdDate,
  this.defaultInstanceName,
  this.description,
  this.expirationDate,
  this.expired,
  this.iamRole,
  this.registrationLimit,
  this.registrationsCount,
  this.tags,
});