RuntimeException constructor

const RuntimeException({
  1. String? message,
  2. Throwable? cause,
})

Implementation

const RuntimeException({
  this.message,
  this.cause,
});