title = (string) ($data['key'] ?? ''); $this->prompt = (string) ($data['value'] ?? ''); } public function toArray(): array { return [ 'title' => $this->title, 'prompt' => $this->prompt, ]; } public function getTitle(): string { return $this->title; } public function getPrompt(): string { return $this->prompt; } }