ErrorInfo constructor

ErrorInfo({
  1. required String filePath,
  2. required String errorMessage,
})

Creates a new ErrorInfo instance with the given filePath and errorMessage.

Implementation

ErrorInfo({
  required this.filePath,
  required this.errorMessage,
});