Emblem constructor

const Emblem({
  1. required SvgWrapper shape,
  2. required SvgWrapper pattern,
  3. required List<EmblemIcon> icons,
  4. required HslColor primaryColor,
  5. required HslColor secondaryColor,
  6. required HslColor iconsColor,
  7. required EmblemType type,
})

Implementation

const Emblem({
  required this.shape,
  required this.pattern,
  required this.icons,
  required this.primaryColor,
  required this.secondaryColor,
  required this.iconsColor,
  required this.type,
});