pattern property

RegExp pattern
final

the regex pattern that can parse the step string For example: Template: "My name is {string}" Step: "My name is 'Jon'" Regex: "'|"'|\"" The above regex would pull out the word "Jon" from the step

Implementation

final RegExp pattern;