ProfileEntity constructor

ProfileEntity({
  1. required String? appId,
  2. String? description,
  3. String? feedId,
  4. BackgroundEntity? backgroundOverride,
  5. StorageConditionsEntity? conditions,
})

Implementation

ProfileEntity({
  required this.appId,
  this.description,
  this.feedId,
  this.backgroundOverride,
  this.conditions,
});