toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customerIdentity = this.customerIdentity;
  final groupIdentity = this.groupIdentity;
  final sharedDriveIdentity = this.sharedDriveIdentity;
  final userIdentity = this.userIdentity;
  return {
    'customerIdentity': ?customerIdentity,
    'groupIdentity': ?groupIdentity,
    'sharedDriveIdentity': ?sharedDriveIdentity,
    'userIdentity': ?userIdentity,
  };
}