copyWith method
Implementation
FitbitAuthCredentials copyWith({String? clientId, String? clientSecret}) {
return FitbitAuthCredentials(
clientId: clientId ?? this.clientId,
clientSecret: clientSecret ?? this.clientSecret,
);
}
FitbitAuthCredentials copyWith({String? clientId, String? clientSecret}) {
return FitbitAuthCredentials(
clientId: clientId ?? this.clientId,
clientSecret: clientSecret ?? this.clientSecret,
);
}