SourceObjectConfig.fromJson constructor
SourceObjectConfig.fromJson(
- 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,
);