shareFat static method

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

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

Implementation

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