bluetoothConnected property

AppIconData get bluetoothConnected

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

Implementation

static AppIconData get bluetoothConnected {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.bluetoothConnected;
    case AppIconsStyle.thin:
      return AppIconsThin.bluetoothConnected;
    case AppIconsStyle.light:
      return AppIconsLight.bluetoothConnected;
    case AppIconsStyle.bold:
      return AppIconsBold.bluetoothConnected;
    case AppIconsStyle.fill:
      return AppIconsFill.bluetoothConnected;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.bluetoothConnected;
  }
}