draggedParts property
      
      Map<Part, DraggingInfo> ?
      get
      draggedParts
      
    
    
Gets the collection of Parts being moved. The value is a Map mapping Parts to DraggingInfo Objects that have a "point" property remembering the original location of that Part.
#copiedParts provides the map of Parts that have been copied during a copying operation, if any.
Implementation
_i3.Map<_i3.Part, _i3.DraggingInfo>? get draggedParts => _i4.getProperty(
      this,
      'draggedParts',
    );
      
      set
      draggedParts
      (Map<Part, DraggingInfo> ? value) 
      
    
    
    
Implementation
set draggedParts(_i3.Map<_i3.Part, _i3.DraggingInfo>? value) {
  _i4.setProperty(
    this,
    'draggedParts',
    value ?? _i5.undefined,
  );
}