bluetoothConnected static method

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

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

Implementation

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