fnStrToDateTime function
dynamic
fnStrToDateTime(
- dynamic value
Implementation
dynamic fnStrToDateTime(dynamic value) {
var s = varToStr(value).replaceAll("/", "-");
return DateTime.tryParse(s);
}