create static method

GetJsonValue create({
  1. bool schemeUtilsIsSetDefaultData = false,
  2. String special_type = "getJsonValue",
  3. String special_return_type = "jsonValue",
  4. bool? is_tdlib_method,
  5. String? json,
})
override

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

static GetJsonValue create({
  bool schemeUtilsIsSetDefaultData = false,
  String special_type = "getJsonValue",
  String special_return_type = "jsonValue",
  bool? is_tdlib_method,
  String? json,
}) {
  // GetJsonValue getJsonValue = GetJsonValue({
  final Map getJsonValue_data_create_json = {
    "@type": special_type,
    "@return_type": special_return_type,
    "is_tdlib_method": is_tdlib_method,
    "json": json,
  };

  getJsonValue_data_create_json.removeWhere((key, value) => value == null);

  if (schemeUtilsIsSetDefaultData) {
    defaultData.forEach((key, value) {
      if (getJsonValue_data_create_json.containsKey(key) == false) {
        getJsonValue_data_create_json[key] = value;
      }
    });
  }
  return GetJsonValue(getJsonValue_data_create_json);
}