copyWithWrapped method
Implementation
WebApiLogicSortItemsResponse copyWithWrapped({
Wrapped<int?>? status,
Wrapped<bool?>? success,
Wrapped<String?>? msg,
Wrapped<DateTime?>? sortStartDateTime,
Wrapped<DateTime?>? itemDateStamp,
}) {
return WebApiLogicSortItemsResponse(
status: (status != null ? status.value : this.status),
success: (success != null ? success.value : this.success),
msg: (msg != null ? msg.value : this.msg),
sortStartDateTime: (sortStartDateTime != null
? sortStartDateTime.value
: this.sortStartDateTime),
itemDateStamp: (itemDateStamp != null
? itemDateStamp.value
: this.itemDateStamp),
);
}