这是我的函数 typedef:
typedef Widget ItemBuilder<T>(T item);
这是我的班级财产:
final ItemBuilder<T>? itemBuilder;
这就是我将它传递给我的对象的方式:
itemBuilder: (Color color) => Container(height: 100.0, color: color)
这是我得到的错误:
type '(Color) => Container' is not a subtype of type '((Color?) => Widget)?'
你能帮我解决这个问题吗?