DataFlowResult constructor
const
DataFlowResult({
- required String filePath,
- required int startLine,
- required int endLine,
- required String enclosingDeclaration,
- required List<
VariableUsage> inputs, - required List<
VariableUsage> mutations, - required List<
VariableUsage> outputs, - required List<
ControlFlowEscape> escapes, - required String suggestedSignature,
- required bool isCleanlyExtractable,
Implementation
const DataFlowResult({
required this.filePath,
required this.startLine,
required this.endLine,
required this.enclosingDeclaration,
required this.inputs,
required this.mutations,
required this.outputs,
required this.escapes,
required this.suggestedSignature,
required this.isCleanlyExtractable,
});