Quantity.atLeast constructor

const Quantity.atLeast(
  1. int min
)

Example: var regex = FluentRegex().literal('a', Quantity.atLeast(2)); expect(regex.hasMatch(''), false); expect(regex.hasMatch('a'), false); expect(regex.hasMatch('aa'), true); expect(regex.findFirst('aaa'), 'aaa');

Implementation

const Quantity.atLeast(int min) : this._('{$min,}');