merge method
Implementation
@override
ListBindingStyle merge(ListBindingStyle? other) {
if (other == null) return this;
return ListBindingStyle(
addButtonLabel: addButtonLabel ?? other.addButtonLabel,
spacing: spacing ?? other.spacing,
viewFactory: viewFactory ?? other.viewFactory,
itemLabel: itemLabel ?? other.itemLabel,
);
}