UNPKG

@dream11mobile/react-native-firebase

Version:

A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Sto

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