toFrappeDateTimeString method

String toFrappeDateTimeString()

Replaces the the 'T' in the generated string with a ' '

Implementation

String toFrappeDateTimeString() =>
    toIso8601String().replaceAll(RegExp(r'T'), ' ');