bluetoothX static method

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

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

Implementation

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