copyWith method

NostrDebugOptions copyWith({
  1. bool? isLogsEnabled,
})

Implementation

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