toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final destination = this.destination;
  final destinationProvider = this.destinationProvider;
  final displayName = this.displayName;
  final globalSettings = this.globalSettings;
  final hasUncommittedChanges = this.hasUncommittedChanges;
  final latestCommitId = this.latestCommitId;
  final latestCommitTime = this.latestCommitTime;
  final name = this.name;
  final source = this.source;
  final sourceProvider = this.sourceProvider;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'destination': ?destination,
    'destinationProvider': ?destinationProvider,
    'displayName': ?displayName,
    'globalSettings': ?globalSettings,
    'hasUncommittedChanges': ?hasUncommittedChanges,
    'latestCommitId': ?latestCommitId,
    'latestCommitTime': ?latestCommitTime,
    'name': ?name,
    'source': ?source,
    'sourceProvider': ?sourceProvider,
    'updateTime': ?updateTime,
  };
}