arrowsOutCardinal static method

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

regular: arrows-out-cardinal thin: arrows-out-cardinal light: arrows-out-cardinal bold: arrows-out-cardinal fill: arrows-out-cardinal duotone: arrows-out-cardinal

Implementation

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