create static method

InputInvoiceName create({
  1. bool schemeUtilsIsSetDefaultData = false,
  2. String special_type = "inputInvoiceName",
  3. String special_return_type = "inputInvoice",
  4. String? name,
})
override

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

Implementation

static InputInvoiceName create({
  bool schemeUtilsIsSetDefaultData = false,
  String special_type = "inputInvoiceName",
  String special_return_type = "inputInvoice",
  String? name,
}) {
  // InputInvoiceName inputInvoiceName = InputInvoiceName({
  final Map inputInvoiceName_data_create_json = {
    "@type": special_type,
    "@return_type": special_return_type,
    "name": name,
  };

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

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