将字符串转换成对象
@override Duration? deserialize(String? str) => str == null ? null : Duration(microseconds: int.parse(str));