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