create static method
UpdateQuickReplyShortcuts
create({
- bool schemeUtilsIsSetDefaultData = false,
- String special_type = "updateQuickReplyShortcuts",
- String special_return_type = "update",
- List<
num> ? shortcut_ids,
override
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
static UpdateQuickReplyShortcuts create({
bool schemeUtilsIsSetDefaultData = false,
String special_type = "updateQuickReplyShortcuts",
String special_return_type = "update",
List<num>? shortcut_ids,
}) {
// UpdateQuickReplyShortcuts updateQuickReplyShortcuts = UpdateQuickReplyShortcuts({
final Map updateQuickReplyShortcuts_data_create_json = {
"@type": special_type,
"@return_type": special_return_type,
"shortcut_ids": shortcut_ids,
};
updateQuickReplyShortcuts_data_create_json.removeWhere((key, value) => value == null);
if (schemeUtilsIsSetDefaultData) {
defaultData.forEach((key, value) {
if (updateQuickReplyShortcuts_data_create_json.containsKey(key) == false) {
updateQuickReplyShortcuts_data_create_json[key] = value;
}
});
}
return UpdateQuickReplyShortcuts(updateQuickReplyShortcuts_data_create_json);
}