StyleOption constructor

StyleOption({
  1. required String id,
  2. required String title,
  3. required List<String> tags,
  4. String? imageUrl,
  5. String? description,
})

Implementation

StyleOption({
  required this.id,
  required this.title,
  required this.tags,
  this.imageUrl,
  this.description,
});