toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (connectedRepository != null)
        'connectedRepository': connectedRepository!,
      if (gitSource != null) 'gitSource': gitSource!,
      if (repoSource != null) 'repoSource': repoSource!,
      if (storageSource != null) 'storageSource': storageSource!,
      if (storageSourceManifest != null)
        'storageSourceManifest': storageSourceManifest!,
    };