memberOf static method

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

regular: member-of thin: member-of light: member-of bold: member-of fill: member-of duotone: member-of

Implementation

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