bluetoothSlash static method

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

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

Implementation

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