read static method

bool read(
  1. WriggleContext context,
  2. String? key, [
  3. bool startingValue = false
])

Read this component's internal state.

Implementation

static bool read(
  WriggleContext context,
  String? key, [
  bool startingValue = false,
]) {
  return StatefulComponent.read(context, (
    ButtonFormItem,
    key,
  ), startingValue);
}