listNotifications method

Future<XRPCResponse<Notifications>> listNotifications({
  1. int? limit,
  2. String? cursor,
  3. DateTime? seenAt,
})

Implementation

Future<core.XRPCResponse<Notifications>> listNotifications({
  int? limit,
  String? cursor,
  DateTime? seenAt,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await findNotifications(
      limit: limit,
      cursor: cursor,
      seenAt: seenAt,
    );