is_rtmp_stream property
bool?
get
is_rtmp_stream
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
bool? get is_rtmp_stream {
try {
if (rawData["is_rtmp_stream"] is bool == false) {
return null;
}
return rawData["is_rtmp_stream"] as bool;
} catch (e) {
return null;
}
}
set
is_rtmp_stream
(bool? value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set is_rtmp_stream(bool? value) {
rawData["is_rtmp_stream"] = value;
}