create static method
Point
create({
- bool schemeUtilsIsSetDefaultData = false,
- String special_type = "point",
- String special_return_type = "point",
- double? x,
- double? y,
override
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
static Point create({
bool schemeUtilsIsSetDefaultData = false,
String special_type = "point",
String special_return_type = "point",
double? x,
double? y,
}) {
// Point point = Point({
final Map point_data_create_json = {
"@type": special_type,
"@return_type": special_return_type,
"x": x,
"y": y,
};
point_data_create_json.removeWhere((key, value) => value == null);
if (schemeUtilsIsSetDefaultData) {
defaultData.forEach((key, value) {
if (point_data_create_json.containsKey(key) == false) {
point_data_create_json[key] = value;
}
});
}
return Point(point_data_create_json);
}