files property

List<String>? get files

The path of the CSS files to inject, relative to the extension's root directory. Exactly one of files and css must be specified.

Implementation

List<String>? get files =>
    _wrapped.files?.toDart.cast<String>().map((e) => e).toList();
set files (List<String>? v)

Implementation

set files(List<String>? v) {
  _wrapped.files = v?.toJSArray((e) => e);
}