getUserIds method

Future<List<UserId>> getUserIds()

Returns a list of UserId objects.

This method retrieves the user IDs from the platform interface. The returned list contains instances of the UserId class.

Implementation

Future<List<UserId>> getUserIds() {
  return _instance.getUserIds();
}