Command constructor
Command({
- Command? parent,
Implementation
Command({this.parent}) {
if ( parent != null)
parent!.children.add(this);
}
Command({this.parent}) {
if ( parent != null)
parent!.children.add(this);
}