GridItemModel constructor
GridItemModel(
- WidgetModel parent,
- String? id, {
- dynamic data,
- String? type,
- dynamic backgroundcolor,
Implementation
GridItemModel(WidgetModel parent, String? id, {dynamic data, this.type, dynamic backgroundcolor}) : super(parent, id, scope: Scope(parent: parent.scope))
{
this.data = data;
}