cubeFocus static method

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

regular: cube-focus thin: cube-focus light: cube-focus bold: cube-focus fill: cube-focus duotone: cube-focus

Implementation

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