msd property

List<List<int>> msd

raw manufacturer specific data

Implementation

List<List<int>> get msd {
  List<List<int>> out = [];
  manufacturerData.forEach((key, value) {
    out.add([key & 0xFF, (key >> 8) & 0xFF] + value);
  });
  return out;
}