FlodError constructor

const FlodError({
  1. required FlodPath path,
  2. required String code,
  3. required Map<String, dynamic> params,
  4. required dynamic value,
  5. String? message,
  6. bool isSecret = false,
})

Implementation

const FlodError({
  required this.path,
  required this.code,
  required this.params,
  required dynamic value,
  this.message,
  this.isSecret = false,
}) : _rawValue = value;