AppDetails constructor

AppDetails({
  1. String? appName,
  2. AppType? appType,
  3. DateTime? creationTime,
  4. String? domainId,
  5. AppStatus? status,
  6. String? userProfileName,
})

Implementation

AppDetails({
  this.appName,
  this.appType,
  this.creationTime,
  this.domainId,
  this.status,
  this.userProfileName,
});