phoneCall static method

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

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

Implementation

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