FlcFrame constructor

const FlcFrame({
  1. required String file,
  2. required int line,
  3. required int column,
  4. String type = 'rohd',
})

Creates an FlcFrame with the given source file, line, column, and optional type tag (defaults to 'rohd').

Implementation

const FlcFrame({
  required this.file,
  required this.line,
  required this.column,
  this.type = 'rohd',
});