isValid method

bool isValid()

检测当前 Date 对象是一个有效的 DateTime

Implementation

bool isValid() {
  return _date is DateTime;
}