ProData constructor

ProData({
  1. String? email,
  2. String? image,
  3. String? mobileNumber,
  4. String? name,
  5. String? nickName,
  6. String? status,
})

Implementation

ProData({
  this.email,
  this.image,
  this.mobileNumber,
  this.name,
  this.nickName,
  this.status,
});