ListServiceProjectAttachmentsResponse.fromJson constructor
ListServiceProjectAttachmentsResponse.fromJson(
- Map json_
Implementation
ListServiceProjectAttachmentsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
serviceProjectAttachments:
json_.containsKey('serviceProjectAttachments')
? (json_['serviceProjectAttachments'] as core.List)
.map((value) => ServiceProjectAttachment.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
unreachable: json_.containsKey('unreachable')
? (json_['unreachable'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);