desk static method

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

regular: desk thin: desk light: desk bold: desk fill: desk duotone: desk

Implementation

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