OwnerIdentity constructor

OwnerIdentity({
  1. CustomerIdentity? customerIdentity,
  2. GroupIdentity? groupIdentity,
  3. SharedDriveIdentity? sharedDriveIdentity,
  4. UserIdentity? userIdentity,
})

Implementation

OwnerIdentity({
  this.customerIdentity,
  this.groupIdentity,
  this.sharedDriveIdentity,
  this.userIdentity,
});