accessShowResult<TResult> method

TResult accessShowResult<TResult>(
  1. AFScreenID screenId
)

Implementation

TResult accessShowResult<TResult>(AFScreenID screenId) {
  final result = showResults[screenId];
  if(result == null) {
    throw AFException("No result for screen $screenId");
  }
  return result;
}