compass static method

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

regular: compass thin: compass light: compass bold: compass fill: compass duotone: compass

Implementation

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