Rocket constructor
- {dynamic name}
The construct allows us to specify a name
and defaults to 'Atlas'
Implementation
Rocket({String name}) {
if (name != null) _devType = name;
}
The construct allows us to specify a name
and defaults to 'Atlas'
Rocket({String name}) {
if (name != null) _devType = name;
}