我需要在我的Flutter应用程序(来自JSON)中按以下格式解析日期:2019-05-17T15:03:22.472+0000根据thedocumentation,我必须使用Z来获取时区(RFC822格式的最后5个字符),所以我使用以下内容:newDateFormat("y-M-d'T'H:m:s.SZ").parseStrict(json['startDate']);但它失败并出现错误:FormatException:Charactersremainingafterdateparsingin2019-05-17T15:03:22.472+0000这是另一个测试:///THISWOR