Image constructor

Image({
  1. required String name,
  2. List<Application>? applications,
  3. String? appstreamAgentVersion,
  4. String? arn,
  5. String? baseImageArn,
  6. DateTime? createdTime,
  7. String? description,
  8. String? displayName,
  9. String? imageBuilderName,
  10. bool? imageBuilderSupported,
  11. ImagePermissions? imagePermissions,
  12. PlatformType? platform,
  13. DateTime? publicBaseImageReleasedDate,
  14. ImageState? state,
  15. ImageStateChangeReason? stateChangeReason,
  16. VisibilityType? visibility,
})

Implementation

Image({
  required this.name,
  this.applications,
  this.appstreamAgentVersion,
  this.arn,
  this.baseImageArn,
  this.createdTime,
  this.description,
  this.displayName,
  this.imageBuilderName,
  this.imageBuilderSupported,
  this.imagePermissions,
  this.platform,
  this.publicBaseImageReleasedDate,
  this.state,
  this.stateChangeReason,
  this.visibility,
});