getUsersWithCreator method

Future<List<User>> getUsersWithCreator(
  1. String creatorId
)

Get all the list of User from the User.

Implementation

Future<List<User>> getUsersWithCreator(String creatorId) =>
    _apiClient.getUsersWithCreator(creatorId).catchError((error) {
      _crashlytics?.recordError(error, StackTrace.current);
      throw error;
    });