eject static method

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

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

Implementation

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