copyWith method
Implementation
WebApiModulesInventoryInventoryRetireInventoryResponse copyWith(
{int? status, bool? success, String? msg, String? retiredId}) {
return WebApiModulesInventoryInventoryRetireInventoryResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
retiredId: retiredId ?? this.retiredId);
}