Preset constructor

Preset({
  1. required String name,
  2. required PresetSettings settings,
  3. String? arn,
  4. String? category,
  5. DateTime? createdAt,
  6. String? description,
  7. DateTime? lastUpdated,
  8. Type? type,
})

Implementation

Preset({
  required this.name,
  required this.settings,
  this.arn,
  this.category,
  this.createdAt,
  this.description,
  this.lastUpdated,
  this.type,
});