is_stream property

bool? get is_stream

Generated By General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Implementation

bool? get is_stream {
  try {
    if (rawData["is_stream"] is bool == false) {
      return null;
    }
    return rawData["is_stream"] as bool;
  } catch (e) {
    return null;
  }
}
set is_stream (bool? value)

Generated By General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Implementation

set is_stream(bool? value) {
  rawData["is_stream"] = value;
}