getAppeal method
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);
}