Logger constructor

Logger(
  1. SamModel _sm,
  2. String _logKey,
  3. double _wid,
  4. double _hgt,
  5. {Key key,
  6. Color color: Colors.limeAccent}
)

Constructs a Logger instance.

The Logger is constructed with the SamHot of _sm as the data pool, _logKey as SamHots sym and with a size of (_wid,_hgt); Optionally the background color can be set to color;

Implementation

Logger(this._sm,this._logKey,this._wid,this._hgt,{Key key,this.color = Colors.limeAccent}) : super(key:key);