allow_scrolling property

bool? get allow_scrolling

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

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

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

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