cigarette static method

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

regular: cigarette thin: cigarette light: cigarette bold: cigarette fill: cigarette duotone: cigarette

Implementation

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