bluetooth static method

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

regular: bluetooth thin: bluetooth light: bluetooth bold: bluetooth fill: bluetooth duotone: bluetooth

Implementation

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