copyWith method
Implementation
DataQuaterDropDown copyWith({ String? id,
String? name,
bool? isSelected,
List<Sub>? sub,
}) => DataQuaterDropDown( id: id ?? _id,
name: name ?? _name,
isSelected: isSelected ?? _isSelected,
sub: sub ?? _sub,
);