toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final captureTime = this.captureTime;
  final connections = this.connections;
  final downloadUrl = this.downloadUrl;
  final mapsPublishStatus = this.mapsPublishStatus;
  final photoId = this.photoId;
  final places = this.places;
  final pose = this.pose;
  final shareLink = this.shareLink;
  final thumbnailUrl = this.thumbnailUrl;
  final transferStatus = this.transferStatus;
  final uploadReference = this.uploadReference;
  final uploadTime = this.uploadTime;
  final viewCount = this.viewCount;
  return {
    'captureTime': ?captureTime,
    'connections': ?connections,
    'downloadUrl': ?downloadUrl,
    'mapsPublishStatus': ?mapsPublishStatus,
    'photoId': ?photoId,
    'places': ?places,
    'pose': ?pose,
    'shareLink': ?shareLink,
    'thumbnailUrl': ?thumbnailUrl,
    'transferStatus': ?transferStatus,
    'uploadReference': ?uploadReference,
    'uploadTime': ?uploadTime,
    'viewCount': ?viewCount,
  };
}