DeletableItem constructor

DeletableItem({
  1. required String name,
  2. List<DeletableAttribute>? attributes,
})

Implementation

DeletableItem({
  required this.name,
  this.attributes,
});