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