IconsLayerInteraction constructor

const IconsLayerInteraction({
  1. IconData remove = Icons.clear,
  2. IconData edit = Icons.edit_outlined,
  3. IconData rotateScale = Icons.sync,
})

Creates a new instance of IconsLayerInteraction.

The edit icon defaults to Icons.edit. The remove icon defaults to Icons.clear. The rotateScale icon defaults to Icons.sync.

Implementation

const IconsLayerInteraction({
  this.remove = Icons.clear,
  this.edit = Icons.edit_outlined,
  this.rotateScale = Icons.sync,
});