copyWith method
Implementation
Failure copyWith({
String? title,
String? msg,
String? code,
String? procedure,
String? job,
}) {
return Failure(
title: title ?? this.title,
msg: msg ?? this.msg,
code: code ?? this.code,
procedure: procedure ?? this.procedure,
job: job ?? this.job,
);
}