Optional.table constructor
Optional.table({
- String? keys,
- String? values,
- ApplyMethod? apply,
- String? regex,
- int? regexGroup,
- String? regexReplace,
- String? regexReplaceWith,
- Map<
String, String> ? replaceFirst, - Map<
String, String> ? replaceAll, - int? cropStart,
- int? cropEnd,
- String? prepend,
- String? append,
- List<
Object> ? match, - int? nth,
- String? splitBy,
- List<
TransformationType> ? transformationOrder,
Named constructor for Table-specific optional parameters
Implementation
factory Optional.table({
String? keys,
String? values,
// Optional common fields
ApplyMethod? apply,
String? regex,
int? regexGroup,
String? regexReplace,
String? regexReplaceWith,
Map<String, String>? replaceFirst,
Map<String, String>? replaceAll,
int? cropStart,
int? cropEnd,
String? prepend,
String? append,
List<Object>? match,
int? nth,
String? splitBy,
List<TransformationType>? transformationOrder,
}) {
return Optional._(
keys: keys,
values: values,
apply: apply,
regex: regex,
regexGroup: regexGroup,
regexReplace: regexReplace,
regexReplaceWith: regexReplaceWith,
replaceFirst: replaceFirst,
replaceAll: replaceAll,
cropStart: cropStart,
cropEnd: cropEnd,
prepend: prepend,
append: append,
match: match,
nth: nth,
splitBy: splitBy,
transformationOrder: transformationOrder,
);
}