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