arrowsIn static method

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

regular: arrows-in thin: arrows-in light: arrows-in bold: arrows-in fill: arrows-in duotone: arrows-in

Implementation

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