Content constructor

Content({
  1. required String address,
  2. required String innerPath,
  3. required int signsRequired,
  4. required int files,
  5. required int filesOptional,
  6. required int includes,
  7. required String title,
  8. required String description,
  9. required String ignore,
  10. required num modified,
  11. required String? zeronetVersion,
  12. String? backgroundColor,
  13. String? backgroundColorDark,
  14. bool? postmessageNonceSecurity,
  15. List<String>? translate,
  16. String? viewport,
})

Implementation

Content({
  required this.address,
  required this.innerPath,
  required this.signsRequired,
  required this.files,
  required this.filesOptional,
  required this.includes,
  required this.title,
  required this.description,
  required this.ignore,
  required this.modified,
  required this.zeronetVersion,
  //
  this.backgroundColor,
  this.backgroundColorDark,
  this.postmessageNonceSecurity,
  this.translate,
  this.viewport,
});