class Animal { String name; int power; Animal(this.name, this.power); Animal.sample() { name = "animal"; power = 100; } }