FormsSectionsServiceCreateRequest constructor

FormsSectionsServiceCreateRequest({
  1. String? entityUuid,
  2. String? userComment,
  3. String? name,
  4. FORM_TYPE? type,
  5. String? description,
  6. String? width,
  7. String? code,
})

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;
}