phone static method

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

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

Implementation

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