toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientId = this.clientId;
  final clientSecret = this.clientSecret;
  final driveId = this.driveId;
  final driveName = this.driveName;
  final fileId = this.fileId;
  final sharepointFolderId = this.sharepointFolderId;
  final sharepointFolderPath = this.sharepointFolderPath;
  final sharepointSiteName = this.sharepointSiteName;
  final tenantId = this.tenantId;
  return {
    'clientId': ?clientId,
    'clientSecret': ?clientSecret,
    'driveId': ?driveId,
    'driveName': ?driveName,
    'fileId': ?fileId,
    'sharepointFolderId': ?sharepointFolderId,
    'sharepointFolderPath': ?sharepointFolderPath,
    'sharepointSiteName': ?sharepointSiteName,
    'tenantId': ?tenantId,
  };
}