I'm using this constructor in a java class called PlayableFighter
public PlayableFighter(String name, int maxHealthPoints, int blastDamage, int physicalDamage,
int maxKi, int maxStamina, ArrayList<SuperAttack> superAttacks, ArrayList<UltimateAttack>
ultimateAttacks)
and I want to call it from a class called Earthling which inherits PlayableFighter but I don't have the values of superAttacks or ultimateAttacks so I would like to set them to default value, I used null but is there a better way?
public Earthling(){
super("Earthling",1250,50,50,4,4,null,null);
}