Background constructor

Background({
  1. required int id,
  2. required bool isDefault,
  3. required bool isDark,
  4. required String name,
  5. Document? document,
  6. BackgroundType? type,
})

Implementation

Background({
  required this.id,
  required this.isDefault,
  required this.isDark,
  required this.name,
  this.document,
  this.type,
});