completeData property

List<int> get completeData

Returns the complete manufacturer data including ID and payload.

This getter provides a consistent view of the full manufacturer data by concatenating the manufacturer ID with the payload. The result is the same across both iOS and Android platforms, as both store the data in the same separated format after parsing via fromString.

Returns a list containing the manufacturer ID (first 2 bytes) followed by the manufacturer-specific payload (remaining bytes).

Implementation

List<int> get completeData {
  return [...manufacturerId, ...payload];
}