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