DataProfile constructor
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,
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;
}