timer static method

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

regular: timer thin: timer light: timer bold: timer fill: timer duotone: timer

Implementation

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