sendReply method

Future<bool> sendReply(
  1. String message
)

send a direct message reply to the incoming notification

Implementation

Future<bool> sendReply(String message) async {
  if (!canReply!) throw Exception("The notification is not replyable");
  try {
    return AndroidNotificationListener.sendReply(message, id);
  } catch (e) {
    rethrow;
  }
}