UNPKG

react-native-firebase-for-netmera

Version:
17 lines (14 loc) 251 B
export default class VideoOptions { constructor() { this._props = { startMuted: true, }; } build() { return this._props; } setStartMuted(muted: boolean = true) { this._props.startMuted = muted; return this; } }