is_http property

bool? get is_http

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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