SourceObjectConfig.fromJson constructor

SourceObjectConfig.fromJson(
  1. Map json_
)

Implementation

SourceObjectConfig.fromJson(core.Map json_)
    : this(
        objectIdentifier: json_.containsKey('objectIdentifier')
            ? SourceObjectIdentifier.fromJson(json_['objectIdentifier']
                as core.Map<core.String, core.dynamic>)
            : null,
      );