DataProfile constructor

DataProfile({
  1. String? masterUserId,
  2. String? groupId,
  3. String? name,
  4. String? userName,
  5. String? email,
  6. String? contactNo,
  7. String? birthdate,
  8. String? isActive,
  9. String? accountName,
  10. String? type,
  11. String? profileImage,
  12. String? logoGet,
  13. String? profileImageGet,
  14. String? subscriptionPlan,
  15. String? gender,
  16. String? companyName,
})

Implementation

DataProfile({
    String? masterUserId,
    String? groupId,
    String? name,
    String? userName,
    String? email,
    String? contactNo,
    String? birthdate,
    String? isActive,
    String? accountName,
  String? type,
  String? logo,
    String? profileImage,
    String? logoGet,
    String? profileImageGet,
    String? subscriptionPlan,
String? gender,
  String? companyName,

}){
  _masterUserId = masterUserId;
  _groupId = groupId;
  _name = name;
  _userName = userName;
  _email = email;
  _contactNo = contactNo;
  _birthdate = birthdate;
  _isActive = isActive;
  _accountName = accountName;
  _type =type;
  _logo = logo;
  _profileImage = profileImage;
  _logoGet = logoGet;
  _profileImageGet = profileImageGet;
  _subscriptionPlan = subscriptionPlan;
  _gender = gender;
  _companyName = companyName;
}