copyWith method

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

Implementation

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