sock static method

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

regular: sock thin: sock light: sock bold: sock fill: sock duotone: sock

Implementation

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