mopedFront static method

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

regular: moped-front thin: moped-front light: moped-front bold: moped-front fill: moped-front duotone: moped-front

Implementation

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