TextParameter constructor
const
TextParameter({
- required String text,
Creates a new text parameter.
text
is the text content of the parameter.
Implementation
const TextParameter({
required this.text,
}) : super(
type: ParameterType.text,
);