BleCommandEnvelope constructor

BleCommandEnvelope({
  1. required int commandType,
  2. required int commandId,
  3. List? args,
})

Implementation

BleCommandEnvelope({
  required this.commandType,
  required this.commandId,
  List<dynamic>? args,
}) : args = args ?? [];