copyWith method

DebugImage copyWith({
  1. String? uuid,
  2. String? type,
  3. String? debugId,
  4. String? debugFile,
  5. String? codeFile,
  6. String? imageAddr,
  7. int? imageSize,
  8. String? arch,
  9. String? codeId,
})

Implementation

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