Container constructor

Container({
  1. String? arn,
  2. bool? accessLoggingEnabled,
  3. DateTime? creationTime,
  4. String? endpoint,
  5. String? name,
  6. ContainerStatus? status,
})

Implementation

Container({
  this.arn,
  this.accessLoggingEnabled,
  this.creationTime,
  this.endpoint,
  this.name,
  this.status,
});