isNullified method
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,
);
}