toilet static method

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

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

Implementation

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