orangeSlice static method

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

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

Implementation

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