nyTimesLogo static method

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

regular: ny-times-logo thin: ny-times-logo light: ny-times-logo bold: ny-times-logo fill: ny-times-logo duotone: ny-times-logo

Implementation

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