toFrappeDateTimeString method
Replaces the the 'T' in the generated string with a ' '
Implementation
String toFrappeDateTimeString() =>
toIso8601String().replaceAll(RegExp(r'T'), ' ');
Replaces the the 'T' in the generated string with a ' '
String toFrappeDateTimeString() =>
toIso8601String().replaceAll(RegExp(r'T'), ' ');