copyWith method

  1. @override
EmailAddressAuthenticationAppleId copyWith({
  1. String? token,
})
override

Implementation

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