NiceRequirementRule constructor

NiceRequirementRule({
  1. required String label,
  2. required bool check(
    1. String
    ),
})

Implementation

NiceRequirementRule({
  required this.label,
  required this.check,
});