EntityInfo constructor

EntityInfo({
  1. required String arn,
  2. required String id,
  3. required String name,
  4. required PolicyOwnerEntityType type,
  5. String? path,
})

Implementation

EntityInfo({
  required this.arn,
  required this.id,
  required this.name,
  required this.type,
  this.path,
});