getStatusesWithUser method

Future<List<Status>> getStatusesWithUser(
  1. String userId
)

Get all the list of Status from the User.

Implementation

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