UserList constructor

UserList({
  1. List<Profile>? data,
  2. bool? status,
})

Implementation

UserList({
  this.data,
  this.status,
});