target static method

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

regular: target thin: target light: target bold: target fill: target duotone: target

Implementation

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