nut static method

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

regular: nut thin: nut light: nut bold: nut fill: nut duotone: nut

Implementation

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