orange static method

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

regular: orange thin: orange light: orange bold: orange fill: orange duotone: orange

Implementation

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