tryParse 静态方法
- String formattedString
根据 formattedString
构造一个新的 DateTime 实例。
与 parse 方法类似,但此函数在 parse 会抛出 FormatException 时返回 null
。
实现
static DateTime? tryParse(String formattedString) {
// TODO: Optimize to avoid throwing.
try {
return parse(formattedString);
} on FormatException {
return null;
}
}