television static method

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

regular: television thin: television light: television bold: television fill: television duotone: television

Implementation

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