strategy static method

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

regular: strategy thin: strategy light: strategy bold: strategy fill: strategy duotone: strategy

Implementation

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