deliver method

void deliver(
  1. Uuid characteristic,
  2. List<int> bytes
)

Pushes bytes as a notification on characteristic.

Implementation

void deliver(Uuid characteristic, List<int> bytes) {
  _notify[characteristic]?.add(Uint8List.fromList(bytes));
}