SetVariableStep constructor

SetVariableStep({
  1. String type = 'String',
  2. required String? value,
  3. required String variableName,
})

Implementation

SetVariableStep({
  String type = 'String',
  required this.value,
  required this.variableName,
})  : assert(type == 'bool' ||
          type == 'double' ||
          type == 'int' ||
          type == 'String'),
      type = type,
      assert(variableName.isNotEmpty == true);