Optional constructor
Optional({})
Implementation
Optional({
ApplyMethod? apply,
String? regex,
int? regexGroup,
String? regexReplace,
String? regexReplaceWith,
Map<String, String>? replace,
int? cropStart,
int? cropEnd,
String? prepend,
String? append,
List<dynamic>? match,
int? nth,
}) : super(
apply: apply,
regex: regex,
regexGroup: regexGroup,
regexReplace: regexReplace,
regexReplaceWith: regexReplaceWith,
replace: replace,
cropStart: cropStart,
cropEnd: cropEnd,
prepend: prepend,
append: append,
match: match,
nth: nth,
);