imageFormats property

List<String> get imageFormats

MIME types that can be requested for returned scans.

Implementation

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

Implementation

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