merge method

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

merge other into this preset. Works as copyWith with all it's entry arguments assigned to other's corresponding fields.

Implementation

@override
Protocol merge(Protocol? other) => other ?? this;