toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountIdentifier = this.accountIdentifier;
  final accountType = this.accountType;
  final displayName = this.displayName;
  final id = this.id;
  final managementType = this.managementType;
  final primaryEmail = this.primaryEmail;
  return {
    'accountIdentifier': ?accountIdentifier,
    'accountType': ?accountType,
    'displayName': ?displayName,
    'id': ?id,
    'managementType': ?managementType,
    'primaryEmail': ?primaryEmail,
  };
}