copyWith method
Implementation
LogbotCredentials copyWith(
{String? clientId,
String? clientSecret,
String? username,
String? password,
String? basePath}) =>
LogbotCredentials(
clientId: clientId ?? this.clientId,
clientSecret: clientSecret ?? this.clientSecret,
username: username ?? this.username,
password: password ?? this.password,
basePath: basePath ?? this.basePath,
);