phonePlus static method

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

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

Implementation

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