copyWith method

AuthenticateResult copyWith({
  1. String? challenge,
  2. String? signature,
})

Implementation

AuthenticateResult copyWith({String? challenge, String? signature}) =>
    AuthenticateResult(
      challenge: challenge ?? this.challenge,
      signature: signature ?? this.signature,
    );