LimiTemplateValidationConfig constructor

LimiTemplateValidationConfig({
  1. double? maxValue,
  2. double? minValue,
  3. String? customErrorMessage,
  4. String? customSuccessMessage,
  5. bool? successMessageIsRequired,
})

Implementation

LimiTemplateValidationConfig({
  this.maxValue,
  this.minValue,
  String? customErrorMessage,
  String? customSuccessMessage,
  bool? successMessageIsRequired,
}) : super(
          customErrorMessage: customErrorMessage,
          customSuccessMessage: customSuccessMessage,
          successMessageIsRequired: successMessageIsRequired);