DigitalShopGeneralError constructor

DigitalShopGeneralError({
  1. String? name,
  2. int? code,
  3. String? description,
})

Implementation

DigitalShopGeneralError({
  this.name,
  this.code,
  this.description,
});