copyWith method
Implementation
EmailAddressAuthenticationCodeInfo copyWith({
String? emailAddressPattern,
int? length,
}) => EmailAddressAuthenticationCodeInfo(
emailAddressPattern: emailAddressPattern ?? this.emailAddressPattern,
length: length ?? this.length,
);