paintBucket static method

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

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

Implementation

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