determineText method

String determineText(
  1. BleStatus status
)

Implementation

String determineText(BleStatus status) {
  switch (status) {
    case BleStatus.unsupported:
      return "This device does not support Bluetooth";
    case BleStatus.unauthorized:
      return "Authorize Logbot Bluetooth to use Bluetooth and location";
    case BleStatus.poweredOff:
      return "Bluetooth is powered off on your device, turn it on";
    case BleStatus.locationServicesDisabled:
      return "Enable location services";
    case BleStatus.ready:
      return "Bluetooth is up and running";
    default:
      return "Waiting to fetch Bluetooth status $status";
  }
}