pants static method

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

regular: pants thin: pants light: pants bold: pants fill: pants duotone: pants

Implementation

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