ErrorInfo constructor

const ErrorInfo({
  1. required String message,
  2. String? hint,
  3. String? docs,
})

Implementation

const ErrorInfo({
  required this.message,
  this.hint,
  this.docs,
});