DividerModel constructor

DividerModel({
  1. required String documentID,
  2. required String appId,
  3. String? description,
  4. RgbModel? color,
  5. double? height,
  6. double? thickness,
  7. double? indent,
  8. double? endIndent,
  9. StorageConditionsModel? conditions,
})

Implementation

DividerModel({
  required this.documentID,
  required this.appId,
  this.description,
  this.color,
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.conditions,
});