getException method

DartBlockException? getException()

Implementation

DartBlockException? getException() {
  if (exception == null) {
    return null;
  }
  return DartBlockException.fromJson(exception!);
}