ExceptionLog constructor

ExceptionLog({
  1. required String type,
  2. required String message,
  3. required String stackTrace,
})

Implementation

ExceptionLog({
  required this.type,
  required this.message,
  required this.stackTrace,
});