FormValidationError constructor

FormValidationError({
  1. String? errorMessage = 'Unexpected form validation error. Please contact your system administrator',
  2. String? errorDetail,
  3. String? data,
  4. String? errorLocationId,
})

Implementation

FormValidationError(
    {String? errorMessage =
        'Unexpected form validation error. Please contact your system administrator',
    String? errorDetail,
    String? data,
    String? errorLocationId})
    : super(
          errorMessage: errorMessage,
          errorDetail: errorDetail,
          data: data,
          errorLocationId: errorLocationId);