engine static method

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

regular: engine thin: engine light: engine bold: engine fill: engine duotone: engine

Implementation

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