Stack constructor

Stack({
  1. required String name,
  2. List<AccessEndpoint>? accessEndpoints,
  3. ApplicationSettingsResponse? applicationSettings,
  4. String? arn,
  5. DateTime? createdTime,
  6. String? description,
  7. String? displayName,
  8. List<String>? embedHostDomains,
  9. String? feedbackURL,
  10. String? redirectURL,
  11. List<StackError>? stackErrors,
  12. List<StorageConnector>? storageConnectors,
  13. List<UserSetting>? userSettings,
})

Implementation

Stack({
  required this.name,
  this.accessEndpoints,
  this.applicationSettings,
  this.arn,
  this.createdTime,
  this.description,
  this.displayName,
  this.embedHostDomains,
  this.feedbackURL,
  this.redirectURL,
  this.stackErrors,
  this.storageConnectors,
  this.userSettings,
});