toPastParticiple method

String toPastParticiple()

Verb

'throw'.conjugate('VBN'); // thrown

// or you can use the aliases
'throw'.toPastParticiple(); // thrown

Implementation

String toPastParticiple() => _toPastParticiple(trim().toLowerCase());