请参阅以下内容,对于具有日期类型
的退货内容感到困惑 void paint(Canvas canvas, Rect rect, { TextDirection textDirection }) {
// rect = rect.deflate(borderWidth / 2.0);
Paint paint;
final RRect borderRect = borderRadius.resolve(textDirection).toRRect(rect);
paint = new Paint()
..color = Colors.red.withOpacity(0.25)
..style = PaintingStyle.fill
..strokeWidth = borderWidth;
canvas.drawRRect(borderRect, paint);
}
答案 0 :(得分:0)
日期方法必须返回Date实例或null ..
你可以return new Date();
,但它总是会有新的约会。
方法whenBuilt
看起来像过去的某个日期,所以你应该在构造函数中创建一些日期。
class A {
private final Date createdAt;
A() {
createdAt = new Date();
}
public Date whenBuilt() {
return createdAt;
}
}
@Override
注释指向您的类是来自某个基类的扩展
尝试检查基类,可能已经建立了日期。