Grid constructor

Grid({
  1. required String id,
  2. required String name,
  3. List<GridField>? fields,
  4. List<GridField>? hiddenFields,
  5. List<GridRow>? rows,
  6. String? key,
  7. dynamic filter,
  8. dynamic sorting,
  9. required LinkMap links,
  10. List<FormData>? embeddedForms,
})

Creates a GridData Object

Implementation

Grid({
  required this.id,
  required this.name,
  this.fields,
  this.hiddenFields,
  this.rows,
  this.key,
  this.filter,
  this.sorting,
  required this.links,
  this.embeddedForms,
});