isNullified method

bool isNullified(
  1. BuildContext context
)
inherited

Whether the group has been nullified by toggleNullification.

Implementation

bool isNullified(BuildContext context) {
  final state = WidgetbookState.of(context);
  final groupMap = FieldCodec.decodeQueryGroup(
    state.queryParams[groupName],
  );

  return fields.every(
    (field) => field.valueFrom(groupMap) == null,
  );
}