services property

List<Guid> get services

Implementation

List<Guid> get services => (samplingConfiguration
        is BluetoothScanPeriodicSamplingConfiguration)
    ? (samplingConfiguration as BluetoothScanPeriodicSamplingConfiguration)
        .withServices
        .map((e) => Guid(e))
        .toList()
    : [];