copy method

CyberDataRow copy()

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;
}