update proto
This commit is contained in:
@@ -62,3 +62,27 @@ class VideoQuality extends $pb.ProtobufEnum {
|
||||
|
||||
const VideoQuality._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
class StreamState extends $pb.ProtobufEnum {
|
||||
static const StreamState ACTIVE = StreamState._(
|
||||
0,
|
||||
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
|
||||
? ''
|
||||
: 'ACTIVE');
|
||||
static const StreamState PAUSED = StreamState._(
|
||||
1,
|
||||
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
|
||||
? ''
|
||||
: 'PAUSED');
|
||||
|
||||
static const $core.List<StreamState> values = <StreamState>[
|
||||
ACTIVE,
|
||||
PAUSED,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, StreamState> _byValue =
|
||||
$pb.ProtobufEnum.initByValue(values);
|
||||
static StreamState? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const StreamState._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user