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