share static method

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

regular: share thin: share light: share bold: share fill: share duotone: share

Implementation

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