filters property

Object? get filters

A set of file filters that are used by the dialog. Each entry is a human-readable label, like "TypeScript", and an array of extensions, e.g.

{
	'Images': ['png', 'jpg']
	'TypeScript': ['ts', 'tsx']
}

Implementation

_i2.Object? get filters => _i5.getProperty(
      this,
      'filters',
    );
set filters (Object? value)

Implementation

set filters(_i2.Object? value) {
  _i5.setProperty(
    this,
    'filters',
    value ?? _i6.undefined,
  );
}