ValidationError constructor

const ValidationError({
  1. required List<Object> loc,
  2. required String msg,
  3. required String type,
})

Implementation

const ValidationError({
  required this.loc,
  required this.msg,
  required this.type,
});