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