Background constructor

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

Describes a chat background

Implementation

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