CreateProjectRequest.fromJson constructor

CreateProjectRequest.fromJson(
  1. Map json_
)

Implementation

CreateProjectRequest.fromJson(core.Map json_)
    : this(
        parentId: json_['parentId'] as core.String?,
        title: json_['title'] as core.String?,
      );