readDateTime method
Read DateTime.
Implementation
DateTime readDateTime() {
final seconds = readInt32();
final tmp =
DateTime.fromMillisecondsSinceEpoch(seconds * 1000, isUtc: true);
return tmp;
}
Read DateTime.
DateTime readDateTime() {
final seconds = readInt32();
final tmp =
DateTime.fromMillisecondsSinceEpoch(seconds * 1000, isUtc: true);
return tmp;
}