newspaperClipping static method

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

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

Implementation

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