copyWith method

EmailAddressAuthenticationCodeInfo copyWith({
  1. String? emailAddressPattern,
  2. int? length,
})

Implementation

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