DartBlockException constructor

DartBlockException({
  1. required String title,
  2. required String message,
  3. Statement? statement,
})

Implementation

DartBlockException({
  required this.title,
  required this.message,
  this.statement,
}) : isGeneric = false,
     internalMessage = '';