GridViewEntity constructor

GridViewEntity({
  1. required String? appId,
  2. String? name,
  3. int? scrollDirection,
  4. int? type,
  5. int? crossAxisCount,
  6. int? maxCrossAxisExtentType,
  7. double? absoluteMaxCrossAxisExtent,
  8. double? relativeMaxCrossAxisExtent,
  9. double? childAspectRatio,
  10. double? padding,
  11. double? mainAxisSpacing,
  12. double? crossAxisSpacing,
  13. StorageConditionsEntity? conditions,
})

Implementation

GridViewEntity({
  required this.appId,
  this.name,
  this.scrollDirection,
  this.type,
  this.crossAxisCount,
  this.maxCrossAxisExtentType,
  this.absoluteMaxCrossAxisExtent,
  this.relativeMaxCrossAxisExtent,
  this.childAspectRatio,
  this.padding,
  this.mainAxisSpacing,
  this.crossAxisSpacing,
  this.conditions,
});