copyWith method
Implementation
AuthSettings copyWith(
{bool? enableAuth,
List<AllowlistItem>? allowlist,
dynamic shareableToken}) {
return AuthSettings(
enableAuth: enableAuth ?? this.enableAuth,
allowlist: allowlist ?? this.allowlist,
shareableToken: shareableToken ?? this.shareableToken);
}