poster property

String poster

Gets or sets a URL of an image to display, for example, like a movie poster. This can be a still frame from the video, or another image if no video data is available.

MDN Reference

Implementation

_i2.String get poster => _i4.getProperty(
      this,
      'poster',
    );
void poster=(String value)

Implementation

set poster(_i2.String value) {
  _i4.setProperty(
    this,
    'poster',
    value,
  );
}