PhaseException constructor

const PhaseException({
  1. required String message,
  2. List<String>? wordList,
})

Implementation

const PhaseException({
  required this.message,
  this.wordList,
});