toGerund method

String toGerund()

Verb

'die'.conjugate('VBG'); // dying

// or you can use the aliases
'die'.toGerund(); // dying

Implementation

String toGerund() => _toGerund(trim().toLowerCase());