Indicate constructor

const Indicate({
  1. required String path,
  2. required int line,
  3. required String message,
})

Implementation

const Indicate({
  required this.path,
  required this.line,
  required this.message,
});