TextParameter constructor

const TextParameter({
  1. 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,
      );