copyWith method

EmailAddressAuthenticationCode copyWith({
  1. String? code,
})

Implementation

EmailAddressAuthenticationCode copyWith({String? code}) =>
    EmailAddressAuthenticationCode(code: code ?? this.code);