toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final emailAddress = this.emailAddress;
  final kind = this.kind;
  final me = this.me;
  final permissionId = this.permissionId;
  final photoLink = this.photoLink;
  return {
    'displayName': ?displayName,
    'emailAddress': ?emailAddress,
    'kind': ?kind,
    'me': ?me,
    'permissionId': ?permissionId,
    'photoLink': ?photoLink,
  };
}