newspaper static method

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

regular: newspaper thin: newspaper light: newspaper bold: newspaper fill: newspaper duotone: newspaper

Implementation

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