copyWith method
Creates a copy of the validator with the given parameters.
Implementation
@override
IEskValidator copyWith({bool? nullable}) {
return EskValidator(
_validator,
nullable: nullable ?? isNullable,
);
}
Creates a copy of the validator with the given parameters.
@override
IEskValidator copyWith({bool? nullable}) {
return EskValidator(
_validator,
nullable: nullable ?? isNullable,
);
}