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.flow
17 lines
(14 loc)
•
251 B
Flow
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
:
boolean
=
true
) {
this
.
_props
.
startMuted
= muted;
return
this
; } }