hashStraight static method

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

regular: hash-straight thin: hash-straight light: hash-straight bold: hash-straight fill: hash-straight duotone: hash-straight

Implementation

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