(message: Message<any> = locale.required)
| 680 | } |
| 681 | |
| 682 | required(message: Message<any> = locale.required): any { |
| 683 | return this.clone().withMutation((next) => |
| 684 | next.nonNullable(message).defined(message), |
| 685 | ); |
| 686 | } |
| 687 | notRequired(): any { |
| 688 | return this.clone().withMutation((next) => next.nullable().optional()); |
| 689 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…