notify method

Future<void> notify({
  1. String? channelName,
  2. String? contentTitle,
  3. String? contentText,
})

Setup notification indicating the server is running. Currently this has effect only on Android (where the server is backed by foreground service (https://developer.android.com/develop/background-work/services/fgs)).

Implementation

Future<void> notify({
  String? channelName,
  String? contentTitle,
  String? contentText,
}) =>
    Future.value();