mirror of
https://github.com/status-im/react-native-firebase.git
synced 2026-08-31 14:11:12 +00:00
17 lines
251 B
JavaScript
17 lines
251 B
JavaScript
export default class VideoOptions {
|
|
constructor() {
|
|
this._props = {
|
|
startMuted: true,
|
|
};
|
|
}
|
|
|
|
build() {
|
|
return this._props;
|
|
}
|
|
|
|
setStartMuted(muted: boolean = true) {
|
|
this._props.startMuted = muted;
|
|
return this;
|
|
}
|
|
}
|