MyLogItem constructor

MyLogItem({
  1. String? prefix,
  2. List<String>? msg,
})

Implementation

MyLogItem({
  this.prefix,
  this.msg,
});