Log constructor

Log({
  1. required String msg,
  2. bool success = false,
  3. Object? error,
  4. StackTrace? stackTrace,
})

Implementation

Log({required this.msg, this.success = false, this.error, this.stackTrace});