toiletPaper static method

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

regular: toilet-paper thin: toilet-paper light: toilet-paper bold: toilet-paper fill: toilet-paper duotone: toilet-paper

Implementation

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