merge method

  1. @override
ListBindingStyle merge(
  1. ListBindingStyle? other
)
override

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