getStatus method

Future<Status> getStatus(
  1. int statusId
)

Get a status by id.

Implementation

Future<Status> getStatus(int statusId) =>
    _apiClient.getStatus(statusId).catchError((error) {
      _crashlytics?.recordError(error, StackTrace.current);
      throw error;
    });