ejectSimple static method

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

regular: eject-simple thin: eject-simple light: eject-simple bold: eject-simple fill: eject-simple duotone: eject-simple

Implementation

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