copyWith method
Implementation
Status copyWith({
final dynamic status,
final String? statusVerbose,
final String? body,
final String? error,
final int? imageId,
}) {
return Status(
status: status ?? this.status,
statusVerbose: statusVerbose ?? this.statusVerbose,
body: body ?? this.body,
error: error ?? this.error,
imageId: imageId ?? this.imageId,
);
}