toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final domain = this.domain;
  final drive = this.drive;
  final teamDrive = this.teamDrive;
  final user = this.user;
  return {
    'domain': ?domain,
    'drive': ?drive,
    'teamDrive': ?teamDrive,
    'user': ?user,
  };
}