moped static method

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

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

Implementation

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