RuntimeError constructor

RuntimeError({
  1. String? code,
  2. String? message,
})

Implementation

RuntimeError({
  this.code,
  this.message,
});