DartCallInfo constructor

DartCallInfo({
  1. bool inlined = false,
  2. bool internal = false,
  3. required String function,
  4. required String filename,
  5. required int line,
  6. required int column,
})

Implementation

DartCallInfo(
    {this.inlined = false,
    this.internal = false,
    required this.function,
    required this.filename,
    required this.line,
    required this.column});