copyWith method

SetRecoveryEmailAddress copyWith({
  1. String? password,
  2. String? newRecoveryEmailAddress,
})

Implementation

SetRecoveryEmailAddress copyWith({
  String? password,
  String? newRecoveryEmailAddress,
}) =>
    SetRecoveryEmailAddress(
      password: password ?? this.password,
      newRecoveryEmailAddress:
          newRecoveryEmailAddress ?? this.newRecoveryEmailAddress,
    );