Theme constructor

Theme({
  1. String? arn,
  2. DateTime? createdTime,
  3. DateTime? lastUpdatedTime,
  4. String? name,
  5. String? themeId,
  6. ThemeType? type,
  7. ThemeVersion? version,
})

Implementation

Theme({
  this.arn,
  this.createdTime,
  this.lastUpdatedTime,
  this.name,
  this.themeId,
  this.type,
  this.version,
});