convertIntValueToDateTime static method
Implementation
static DateTime? convertIntValueToDateTime(String? value) {
if (value == null) {
return null;
} else {
return int.tryParse(value) != null
? DateTime.fromMillisecondsSinceEpoch(int.tryParse(value)!)
: null;
}
}