hash static method

PhosphorIconData hash([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])
override

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

Implementation

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