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