UserInfoModel constructor

const UserInfoModel({
  1. String? addedBy,
  2. List<String>? associatedUsers,
})

Implementation

const UserInfoModel({
  this.addedBy,
  this.associatedUsers,
});