Payload constructor

Payload({
  1. String? description,
  2. String? name,
  3. List<int>? users,
  4. bool? isPersonal,
})

Implementation

Payload ({
  this.description,
  this.name,
  this.users,
  this.isPersonal,
});