BleException constructor

const BleException({
  1. required String operation,
  2. required String message,
  3. int? code,
})

Implementation

const BleException({
  required this.operation,
  required this.message,
  this.code,
});