arrowsMerge static method

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

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

Implementation

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