phoneOutgoing static method

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

regular: phone-outgoing thin: phone-outgoing light: phone-outgoing bold: phone-outgoing fill: phone-outgoing duotone: phone-outgoing

Implementation

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