Problem constructor

const Problem(
  1. String message,
  2. String stacktrace,
  3. bool isFailure
)

Creates a Problem with the given message, stacktrace and isFailure.

Implementation

const Problem(this.message, this.stacktrace, this.isFailure);