Prompt constructor
Prompt({})
Implementation
factory Prompt({
required String name,
String? title,
String? description,
List<PromptArgument>? arguments,
List<Icon>? icons,
Meta? meta,
}) => Prompt.fromMap({
Keys.name: name,
if (title != null) Keys.title: title,
if (description != null) Keys.description: description,
if (arguments != null) Keys.arguments: arguments,
if (icons != null) Keys.icons: icons,
if (meta != null) Keys.meta: meta,
});