BleResponseEnvelope constructor

BleResponseEnvelope({
  1. required int commandType,
  2. List? responseArgs,
  3. int? commandId,
  4. List? errors,
})

Implementation

BleResponseEnvelope({
  required this.commandType,
  this.responseArgs,
  this.commandId,
  this.errors,
});