CpMemberDataResponse constructor

CpMemberDataResponse({
  1. String? type,
  2. String? description,
  3. bool isSelected = false,
  4. String? image,
})

Implementation

CpMemberDataResponse({
    String? type,
    String? description,
    bool isSelected = false,
    String? image,}){
  _type = type;
  _description = description;
  _image = image;
  _isSelected = isSelected;
}