copyWith method

RunnableDebugInformation copyWith({
  1. String? filePath,
  2. int? lineNumber,
  3. String? lineText,
})

Implementation

RunnableDebugInformation copyWith({
  String? filePath,
  int? lineNumber,
  String? lineText,
}) {
  return RunnableDebugInformation(
    filePath ?? this.filePath,
    lineNumber ?? this.lineNumber,
    lineText ?? this.lineText,
  );
}