SapDiscoveryComponentReplicationSite.fromJson constructor

SapDiscoveryComponentReplicationSite.fromJson(
  1. Map json_
)

Implementation

SapDiscoveryComponentReplicationSite.fromJson(core.Map json_)
  : this(
      component:
          json_.containsKey('component')
              ? SapDiscoveryComponent.fromJson(
                json_['component'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      sourceSite: json_['sourceSite'] as core.String?,
    );