UNPKG
react-native-firebase-for-netmera
Version:
latest (1.0.1)
1.0.1
1.0.0
.
Akifblc/react-native-firebase
react-native-firebase-for-netmera
/
dist
/
modules
/
admob
/
VideoOptions.js
17 lines
(14 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export
default
class
VideoOptions
{
constructor
(
) {
this
.
_props
= {
startMuted
:
true
}; }
build
(
) {
return
this
.
_props
; }
setStartMuted
(
muted =
true
) {
this
.
_props
.
startMuted
= muted;
return
this
; } }