Skip to content

Commit 7bcd70c

Browse files
authored
make FormElementState internal (#304)
1 parent 7fa32d0 commit 7bcd70c

File tree

1 file changed

+4
-4
lines changed
  • toolkit/featureforms/src/main/java/com/arcgismaps/toolkit/featureforms/components/base

1 file changed

+4
-4
lines changed

toolkit/featureforms/src/main/java/com/arcgismaps/toolkit/featureforms/components/base/FormElementState.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import com.arcgismaps.mapping.featureforms.FormElement
2626
* @param description Description text for the field.
2727
* @param isVisible Property that indicates if the field is visible.
2828
*/
29-
public abstract class FormElementState(
30-
public val label : String,
31-
public val description: String,
32-
public val isVisible : StateFlow<Boolean>
29+
internal abstract class FormElementState(
30+
val label : String,
31+
val description: String,
32+
val isVisible : StateFlow<Boolean>
3333
)

0 commit comments

Comments
 (0)