LookupServiceProjectAttachmentResponse.fromJson constructor
LookupServiceProjectAttachmentResponse.fromJson(
- Map json_
Implementation
LookupServiceProjectAttachmentResponse.fromJson(core.Map json_)
: this(
serviceProjectAttachment:
json_.containsKey('serviceProjectAttachment')
? ServiceProjectAttachment.fromJson(
json_['serviceProjectAttachment']
as core.Map<core.String, core.dynamic>)
: null,
);