sendNotify method

void sendNotify(
  1. String message, {
  2. int? what,
  3. Object? data,
})

Implementation

void sendNotify(String message, {int? what, Object? data}) {
  if (_notifyCall != null) _notifyCall!(message, what: what, data: data);
}