ServiceProjectAttachment.fromJson constructor

ServiceProjectAttachment.fromJson(
  1. Map json_
)

Implementation

ServiceProjectAttachment.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        serviceProject: json_.containsKey('serviceProject')
            ? json_['serviceProject'] as core.String
            : null,
        state:
            json_.containsKey('state') ? json_['state'] as core.String : null,
        uid: json_.containsKey('uid') ? json_['uid'] as core.String : null,
      );