threeD static method

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

regular: three-d thin: three-d light: three-d bold: three-d fill: three-d duotone: three-d

Implementation

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