FormsSectionsServiceCreateRequest constructor
FormsSectionsServiceCreateRequest({})
Implementation
factory FormsSectionsServiceCreateRequest({
$core.String? entityUuid,
$core.String? userComment,
$core.String? name,
$1.FORM_TYPE? type,
$core.String? description,
$core.String? width,
$core.String? code,
}) {
final result = create();
if (entityUuid != null) result.entityUuid = entityUuid;
if (userComment != null) result.userComment = userComment;
if (name != null) result.name = name;
if (type != null) result.type = type;
if (description != null) result.description = description;
if (width != null) result.width = width;
if (code != null) result.code = code;
return result;
}