clone method

  1. @override
SignBit clone({
  1. String? name,
})
override

Makes a copy of this, optionally with the specified name, but the same width.

It is expected that any implementation will override this in a way that returns the same type as itself.

Implementation

@override
SignBit clone({String? name}) =>
    SignBit(this, inverted: inverted, name: name);