copyWith method

Slip39 copyWith({
  1. required Slip39Node root,
})

Methods

Implementation

Slip39 copyWith({required Slip39Node root}) {
  return Slip39._(
    root: root,
    iterationExponent: this.iterationExponent,
    identifier: this.identifier,
    groupCount: this.groupCount,
    groupThreshold: this.groupThreshold,
  );
}