voicemail static method

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

regular: voicemail thin: voicemail light: voicemail bold: voicemail fill: voicemail duotone: voicemail

Implementation

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