ConsumerPermission constructor

const ConsumerPermission({
  1. bool menu = false,
  2. bool view = false,
  3. bool insert = false,
  4. bool update = false,
  5. bool delete = false,
  6. String iconName = 'solidCircle',
  7. String name = '',
})

Implementation

const ConsumerPermission({
  this.menu = false,
  this.view = false,
  this.insert = false,
  this.update = false,
  this.delete = false,
  this.iconName = 'solidCircle',
  this.name = '',
});