copy method
Copy creates new entity with new UUID
Implementation
CyberDataRow copy() {
final newRow = CyberDataRow(Map<String, dynamic>.from(_data));
// ✅ NEW ROW gets NEW UUID (different entity)
return newRow;
}
Copy creates new entity with new UUID
CyberDataRow copy() {
final newRow = CyberDataRow(Map<String, dynamic>.from(_data));
// ✅ NEW ROW gets NEW UUID (different entity)
return newRow;
}