link static method

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

regular: link thin: link light: link bold: link fill: link duotone: link

Implementation

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