getNotifications static method

void getNotifications(
  1. bool loadMore,
  2. int limit
)

Implementation

static void getNotifications(bool loadMore, int limit) {
  Map details = {'loadMore': loadMore, 'limit': limit};
  _channel.invokeListMethod("getNotifications", details);
}