copy method

Signature copy()

Create a duplicate of the provided signature

Implementation

Signature copy() {
  return new Signature._(List<int>.from(this.signature),
      List<int>.from(this.data), this.keySize);
}