Dog constructor

const Dog({
  1. int hp = 20,
  2. bool goodBoy = true,
})

Implementation

const Dog({super.hp = 20, this.goodBoy = true});