perspective static method

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

regular: perspective thin: perspective light: perspective bold: perspective fill: perspective duotone: perspective

Implementation

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