notMemberOf static method

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

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

Implementation

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