flutter语法糖A?.B 意思为 A!=null?A.B : nullA??B如果 A 等于 null,那么 A??B 为 B如果 A 不等于 null,那么 A??B 为 AA is B用于判断类型是否一致可以简写成(A as B)..