paintRoller static method

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

regular: paint-roller thin: paint-roller light: paint-roller bold: paint-roller fill: paint-roller duotone: paint-roller

Implementation

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