copyWith method

DebugImage copyWith({
  1. String? uuid,
  2. String? name,
  3. String? type,
  4. String? debugId,
  5. String? debugFile,
  6. String? codeFile,
  7. String? imageAddr,
  8. String? imageVmAddr,
  9. int? imageSize,
  10. String? arch,
  11. String? codeId,
  12. int? cpuType,
  13. int? cpuSubtype,
})

Implementation

DebugImage copyWith({
  String? uuid,
  String? name,
  String? type,
  String? debugId,
  String? debugFile,
  String? codeFile,
  String? imageAddr,
  String? imageVmAddr,
  int? imageSize,
  String? arch,
  String? codeId,
  int? cpuType,
  int? cpuSubtype,
}) =>
    DebugImage(
      uuid: uuid ?? this.uuid,
      name: name ?? this.name,
      type: type ?? this.type,
      debugId: debugId ?? this.debugId,
      debugFile: debugFile ?? this.debugFile,
      codeFile: codeFile ?? this.codeFile,
      imageAddr: imageAddr ?? this.imageAddr,
      imageVmAddr: imageVmAddr ?? this.imageVmAddr,
      imageSize: imageSize ?? this.imageSize,
      arch: arch ?? this.arch,
      codeId: codeId ?? this.codeId,
      cpuType: cpuType ?? this.cpuType,
      cpuSubtype: cpuSubtype ?? this.cpuSubtype,
    );