Error constructor

Error({
  1. required String source,
  2. required String message,
  3. required String trace,
})

Implementation

Error({
  required this.source,
  required this.message,
  required this.trace,
});