hasNoMatch method

bool hasNoMatch(
  1. String input
)

======================================================================== CONVENIENCE METHODS

Example: expect(FluentRegex().digit().hasNoMatch('a'), true); expect(FluentRegex().letter().hasNoMatch('a'), false);

Implementation

/// Example:
/// expect(FluentRegex().digit().hasNoMatch('a'), true);
/// expect(FluentRegex().letter().hasNoMatch('a'), false);
bool hasNoMatch(String input) => !hasMatch(input);