LogbotError constructor

LogbotError({
  1. required String error,
  2. required String errorDescription,
})

Returns a new LogbotError instance.

Implementation

LogbotError({
  required this.error,
  required this.errorDescription,
});