copyWith method

EmailAddressAuthenticationCodeInfo copyWith({
  1. String? emailAddressPattern,
  2. int? length,
  3. dynamic extra,
  4. int? clientId,
})

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,
);