addInflectionRule method

void addInflectionRule(
  1. String presentOrParticiple,
  2. dynamic past
)

Implementation

void addInflectionRule(String presentOrParticiple, dynamic past) {
  _inflectionRules
      .add([new RegExp(presentOrParticiple, caseSensitive: false), past]);
}