Cat constructor

Cat({
  1. required bool meow,
  2. int lives = 9,
})

Implementation

Cat({required this.meow, this.lives = 9});