sendSimpleNotifToUser static method

Future<void> sendSimpleNotifToUser(
  1. String pushpoleId,
  2. String title,
  3. String content
)

To send a simple notification to another user using his/her PushPoleId

Implementation

static Future<void> sendSimpleNotifToUser(
        String pushpoleId, String title, String content) async =>
    _channel.invokeMethod("PushPole#sendSimpleNotifToUser",
        {"pushpoleId": pushpoleId, "title": title, "content": content});