phoneDisconnect static method

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

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

Implementation

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