projectPushTopic static method

Future<MPTopic> projectPushTopic()

A push topic that represents all devices, used to send a push to all apps. @returns a future that completes with the project push topic.

Implementation

static Future<MPTopic> projectPushTopic() async => MPTopic(
      code: 'project.all',
      title: 'All users',
      single: false,
    );