Background constructor

Background({
  1. String? extra,
  2. int? client_id,
  3. int64? id,
  4. Bool? is_default,
  5. Bool? is_dark,
  6. string? name,
  7. Document? document,
  8. BackgroundType? type,
})

Implementation

Background({
  super.extra,
  super.client_id,
  this.id,
  this.is_default,
  this.is_dark,
  this.name,
  this.document,
  this.type,
});