copyWith method

SetAuthenticationEmailAddress copyWith({
  1. String? emailAddress,
})

Implementation

SetAuthenticationEmailAddress copyWith({
  String? emailAddress,
}) =>
    SetAuthenticationEmailAddress(
      emailAddress: emailAddress ?? this.emailAddress,
    );