ControlFlowEscape constructor

const ControlFlowEscape({
  1. required ControlFlowEscapeType type,
  2. required int line,
  3. required String description,
})

Implementation

const ControlFlowEscape({
  required this.type,
  required this.line,
  required this.description,
});