getAppeal method

Future<Result<GetAppealResponse>> getAppeal({
  1. required String id,
})

Gets an appeal by ID.

Retrieves the appeal identified by id.

Returns a Result containing a api.GetAppealResponse or an error.

Implementation

Future<Result<api.GetAppealResponse>> getAppeal({
  required String id,
}) {
  return _moderationRepository.getAppeal(id);
}