sunDim static method

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

regular: sun-dim thin: sun-dim light: sun-dim bold: sun-dim fill: sun-dim duotone: sun-dim

Implementation

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