Log constructor
Log({
- required String message,
- Level? level,
- DateTime? time,
- Object? error,
- StackTrace? stackTrace,
Implementation
Log({
required this.message,
this.level,
this.time,
this.error,
this.stackTrace,
});