copyWith method
Implementation
NostrDebugOptions copyWith({
bool? isLogsEnabled,
}) {
return NostrDebugOptions(
tag: tag,
isLogsEnabled: isLogsEnabled ?? this.isLogsEnabled,
);
}
NostrDebugOptions copyWith({
bool? isLogsEnabled,
}) {
return NostrDebugOptions(
tag: tag,
isLogsEnabled: isLogsEnabled ?? this.isLogsEnabled,
);
}