copyWithWrapped method
Implementation
Status copyWithWrapped(
{Wrapped<String?>? statusCode, Wrapped<String?>? statusDescription}) {
return Status(
statusCode: (statusCode != null ? statusCode.value : this.statusCode),
statusDescription: (statusDescription != null
? statusDescription.value
: this.statusDescription));
}