AppPermission constructor

AppPermission({
  1. int? id,
  2. String? name,
  3. String? permissionId,
  4. Map<String, String>? description,
  5. String? group,
  6. int? groupId,
  7. ConsentStatus? consentStatus,
  8. Map<String, String>? nameMap,
  9. bool? isSettingsPromptEnabled,
})

Implementation

AppPermission({
  this.id,
  this.name,
  this.permissionId,
  this.description,
  this.group,
  this.groupId,
  this.consentStatus,
  this.nameMap,
  this.isSettingsPromptEnabled,
});