onNotificationSent function
Implementation
Function(Map<Object?, Object?>?, int) onNotificationSent(Function(BleDevice? device, int status) onNotificationSent) {
return (serializedDevice, status) {
onNotificationSent(
DeSerializer.device(serializedDevice?.cast<String, dynamic>()),
status
);
};
}