Log.info constructor

Log.info(
  1. dynamic msg, {
  2. Entity? to,
  3. String? desc,
  4. Color color = Color.Gray,
})

Log.info shows a small info message

Implementation

Log.info(this.msg, {this.to, this.desc, this.color = Color.Gray})
    : _type = _LogType.INFO {
  to ??= Entity.All();
}