CategoryViewModel constructor

CategoryViewModel({
  1. int? id,
  2. String? name,
  3. String? photoUri,
})

Implementation

CategoryViewModel({
  this.id,
  this.name,
  this.photoUri,
});