getDistributors static method

Future<List<String>> getDistributors([
  1. List<String>? features = const []
])

Returns the qualified identifier of all available distributors on the system.

Implementation

static Future<List<String>> getDistributors(
    [List<String>? features = const []]) async {
  return await UnifiedPushPlatform.instance.getDistributors(features ?? []);
}