copyWith method
Implementation
ValidationError copyWith({List<Object>? loc, String? msg, String? type}) {
return ValidationError(
loc: loc ?? this.loc, msg: msg ?? this.msg, type: type ?? this.type);
}
ValidationError copyWith({List<Object>? loc, String? msg, String? type}) {
return ValidationError(
loc: loc ?? this.loc, msg: msg ?? this.msg, type: type ?? this.type);
}