cylinder static method

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

regular: cylinder thin: cylinder light: cylinder bold: cylinder fill: cylinder duotone: cylinder

Implementation

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