Create a hero.
Source
Hero({
Key key,
@required this.tag,
this.turns: 1,
this.alwaysAnimate: false,
@required this.child,
}) : super(key: key) {
assert(tag != null);
assert(turns != null);
assert(alwaysAnimate != null);
assert(child != null);
}