format method
Format the prompt given the input values and return a formatted string.
values
- Any arguments to be passed to the prompt template.
Implementation
@override
String format([final InputValues values = const {}]) {
final allValues = mergePartialAndUserVariables(values);
return renderTemplate(
template: template,
inputValues: allValues,
);
}