StackSummary constructor

StackSummary({
  1. required DateTime creationTime,
  2. required String stackName,
  3. required StackStatus stackStatus,
  4. DateTime? deletionTime,
  5. StackDriftInformationSummary? driftInformation,
  6. DateTime? lastUpdatedTime,
  7. String? parentId,
  8. String? rootId,
  9. String? stackId,
  10. String? stackStatusReason,
  11. String? templateDescription,
})

Implementation

StackSummary({
  required this.creationTime,
  required this.stackName,
  required this.stackStatus,
  this.deletionTime,
  this.driftInformation,
  this.lastUpdatedTime,
  this.parentId,
  this.rootId,
  this.stackId,
  this.stackStatusReason,
  this.templateDescription,
});