toPast method

String toPast()

Verb

'fly'.conjugate('VBD'); // flew

// or you can use the aliases
'fly'.toPast(); // flew

Implementation

String toPast() => _toPast(trim().toLowerCase());