toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final aspectSyncMode = this.aspectSyncMode;
  final entrySyncMode = this.entrySyncMode;
  final logLevel = this.logLevel;
  final scope = this.scope;
  final sourceCreateTime = this.sourceCreateTime;
  final sourceStorageUri = this.sourceStorageUri;
  return {
    'aspectSyncMode': ?aspectSyncMode,
    'entrySyncMode': ?entrySyncMode,
    'logLevel': ?logLevel,
    'scope': ?scope,
    'sourceCreateTime': ?sourceCreateTime,
    'sourceStorageUri': ?sourceStorageUri,
  };
}