Users constructor

Users({
  1. int? id,
  2. String? fullName,
  3. String? status,
  4. bool? isExternal,
})

Implementation

Users ({
  this.id,
  this.fullName,
  this.status,
  this.isExternal,
});