SumInterface.clone constructor

SumInterface.clone(
  1. SumInterface other
)

Creates a clone of this SumInterface for things like pairConnectIO.

Implementation

SumInterface.clone(SumInterface other)
    : this(
        fixedAmount: other.fixedAmount,
        increments: other.increments,
        width: other.width,
        hasEnable: other.hasEnable,
      );