toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final directUploadSource = this.directUploadSource;
  final displayName = this.displayName;
  final fileStatus = this.fileStatus;
  final gcsSource = this.gcsSource;
  final googleDriveSource = this.googleDriveSource;
  final jiraSource = this.jiraSource;
  final name = this.name;
  final sharePointSources = this.sharePointSources;
  final slackSource = this.slackSource;
  final updateTime = this.updateTime;
  final userMetadata = this.userMetadata;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'directUploadSource': ?directUploadSource,
    'displayName': ?displayName,
    'fileStatus': ?fileStatus,
    'gcsSource': ?gcsSource,
    'googleDriveSource': ?googleDriveSource,
    'jiraSource': ?jiraSource,
    'name': ?name,
    'sharePointSources': ?sharePointSources,
    'slackSource': ?slackSource,
    'updateTime': ?updateTime,
    'userMetadata': ?userMetadata,
  };
}