GridItemModel constructor

GridItemModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic data,
  4. String? type,
  5. 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;
}