cube static method

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

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

Implementation

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