DBX_Item_Metadata constructor

DBX_Item_Metadata({
  1. required String tag,
  2. DateTime? client_modified,
  3. String? content_hash,
  4. required String id,
  5. bool? is_downloadable,
  6. required String name,
  7. required String path_display,
  8. required String path_lower,
  9. String? rev,
  10. DateTime? server_modified,
  11. int? size,
})

Implementation

DBX_Item_Metadata({
  required this.tag,//
  this.client_modified,
  this.content_hash,
  required this.id,//
  this.is_downloadable,
  required this.name,//
  required this.path_display,//
  required this.path_lower,//
  this.rev,
  this.server_modified,
  this.size,
});