create static method
GroupCallVideoSourceGroup
create({
- bool schemeUtilsIsSetDefaultData = false,
- String special_type = "groupCallVideoSourceGroup",
- String special_return_type = "groupCallVideoSourceGroup",
- String? semantics,
- List<
num> ? source_ids,
override
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
static GroupCallVideoSourceGroup create({
bool schemeUtilsIsSetDefaultData = false,
String special_type = "groupCallVideoSourceGroup",
String special_return_type = "groupCallVideoSourceGroup",
String? semantics,
List<num>? source_ids,
}) {
// GroupCallVideoSourceGroup groupCallVideoSourceGroup = GroupCallVideoSourceGroup({
final Map groupCallVideoSourceGroup_data_create_json = {
"@type": special_type,
"@return_type": special_return_type,
"semantics": semantics,
"source_ids": source_ids,
};
groupCallVideoSourceGroup_data_create_json.removeWhere((key, value) => value == null);
if (schemeUtilsIsSetDefaultData) {
defaultData.forEach((key, value) {
if (groupCallVideoSourceGroup_data_create_json.containsKey(key) == false) {
groupCallVideoSourceGroup_data_create_json[key] = value;
}
});
}
return GroupCallVideoSourceGroup(groupCallVideoSourceGroup_data_create_json);
}