copyWith method

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

Implementation

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