article static method

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

regular: article thin: article light: article bold: article fill: article duotone: article

Implementation

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