ProfileModel constructor

ProfileModel({
  1. required String documentID,
  2. required String appId,
  3. String? description,
  4. FeedModel? feed,
  5. BackgroundModel? backgroundOverride,
  6. StorageConditionsModel? conditions,
})

Implementation

ProfileModel({
  required this.documentID,
  required this.appId,
  this.description,
  this.feed,
  this.backgroundOverride,
  this.conditions,
});