playsInline property
bool
get
playsInline
Gets or sets the playsinline of the video element. for example, On iPhone, video elements will now be allowed to play inline, and will not automatically enter fullscreen mode when playback begins.
Implementation
_i2.bool get playsInline => _i4.getProperty(
this,
'playsInline',
);
set
playsInline
(bool value)
Implementation
set playsInline(_i2.bool value) {
_i4.setProperty(
this,
'playsInline',
value,
);
}