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