copyWith method
Implementation
WebApiLogicSortItemsResponse copyWith({
int? status,
bool? success,
String? msg,
DateTime? sortStartDateTime,
DateTime? itemDateStamp,
}) {
return WebApiLogicSortItemsResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
sortStartDateTime: sortStartDateTime ?? this.sortStartDateTime,
itemDateStamp: itemDateStamp ?? this.itemDateStamp,
);
}