envelopeSimple static method

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

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

Implementation

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