ItemModel constructor

const ItemModel({
  1. String idItem = '',
  2. String descripcionItem = '',
})

Implementation

const ItemModel({
  this.idItem = '',
  this.descripcionItem = '',
});