mimeTypes property

List<String>? get mimeTypes

The MIME types that are accepted by the caller.

Implementation

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

Implementation

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