LookupServiceProjectAttachmentResponse.fromJson constructor

LookupServiceProjectAttachmentResponse.fromJson(
  1. 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,
    );