eraser static method

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

regular: eraser thin: eraser light: eraser bold: eraser fill: eraser duotone: eraser

Implementation

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