InterconnectAttachmentsScopedList.fromJson constructor
InterconnectAttachmentsScopedList.fromJson(
- Map json_
Implementation
InterconnectAttachmentsScopedList.fromJson(core.Map json_)
: this(
interconnectAttachments: json_.containsKey('interconnectAttachments')
? (json_['interconnectAttachments'] as core.List)
.map((value) => InterconnectAttachment.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
warning: json_.containsKey('warning')
? InterconnectAttachmentsScopedListWarning.fromJson(
json_['warning'] as core.Map<core.String, core.dynamic>)
: null,
);