readCvLogo static method

PhosphorIconData readCvLogo([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: read-cv-logo thin: read-cv-logo light: read-cv-logo bold: read-cv-logo fill: read-cv-logo duotone: read-cv-logo

Implementation

static PhosphorIconData readCvLogo(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.readCvLogo;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.readCvLogo;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.readCvLogo;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.readCvLogo;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.readCvLogo;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.readCvLogo;
  }
}