InvestType constructor
InvestType({})
Implementation
InvestType({
String? id,
String? type,
String? name,
String? customDate,
String? createdAt,
String? isActive,
String? isDeleted,
String? sort,
String? icon,
String? masterUserId,}){
_id = id;
_type = type;
_name = name;
_customDate = customDate;
_createdAt = createdAt;
_isActive = isActive;
_isDeleted = isDeleted;
_sort = sort;
_icon = icon;
_masterUserId = masterUserId;
}