Frame constructor

const Frame({
  1. required String filename,
  2. String? type,
  3. String? method,
  4. int? line,
  5. int? column,
})

Implementation

const Frame({
  required this.filename,
  this.type,
  this.method,
  this.line,
  this.column,
});