create static method
RegExpDataScheme
create({
- String? special_type,
- String? pattern,
- bool? is_multi_line,
- bool? is_case_sensitive,
- bool? is_unicode,
- bool? is_dot_all,
override
return original data json
Implementation
static RegExpDataScheme create({
String? special_type,
String? pattern,
bool? is_multi_line,
bool? is_case_sensitive,
bool? is_unicode,
bool? is_dot_all,
}) {
RegExpDataScheme regExpDataScheme = RegExpDataScheme({
"@type": special_type,
"pattern": pattern,
"is_multi_line": is_multi_line,
"is_case_sensitive": is_case_sensitive,
"is_unicode": is_unicode,
"is_dot_all": is_dot_all,
});
return regExpDataScheme;
}