anchor static method

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

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

Implementation

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