desktop static method

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

regular: desktop thin: desktop light: desktop bold: desktop fill: desktop duotone: desktop

Implementation

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