phoneIncoming static method

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

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

Implementation

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