photo_width property

num? get photo_width

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

Implementation

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

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

Implementation

set photo_width(num? value) {
  rawData["photo_width"] = value;
}