Dog constructor

Dog({
  1. required bool bark,
  2. required String breed,
})

Implementation

Dog({required this.bark, required this.breed});