Bank constructor

Bank(
  1. Color _color,
  2. String _missType,
  3. int _ix,
  4. double _wid,
  5. double _hgt,
  6. int _depth
)

Construct preserves build parameters

Implementation

Bank(this._color,this._missType,this._ix,this._wid,this._hgt,this._depth) {
  this._bankName = "$_missType-$_ix";
}