feather static method

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

regular: feather thin: feather light: feather bold: feather fill: feather duotone: feather

Implementation

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