copyWith method

RecoveryEmailAddress copyWith({
  1. String? recoveryEmailAddress,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

RecoveryEmailAddress copyWith({
  String? recoveryEmailAddress,
  dynamic extra,
  int? clientId,
}) => RecoveryEmailAddress(
  recoveryEmailAddress: recoveryEmailAddress ?? this.recoveryEmailAddress,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);