anchorSimple static method

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

regular: anchor-simple thin: anchor-simple light: anchor-simple bold: anchor-simple fill: anchor-simple duotone: anchor-simple

Implementation

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