ServiceProjectAttachment.fromJson constructor

ServiceProjectAttachment.fromJson(
  1. Map json_
)

Implementation

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