pattern property
String
get
pattern
A file glob pattern like *.{ts,js} that will be matched on file paths
relative to the base path.
Example: Given a base of /home/work/folder and a file path of /home/work/folder/index.js,
the file glob pattern will match on index.js.
Implementation
_i2.String get pattern => _i5.getProperty(
this,
'pattern',
);
set
pattern
(String value)
Implementation
set pattern(_i2.String value) {
_i5.setProperty(
this,
'pattern',
value,
);
}