envelope static method

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

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

Implementation

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