create static method

PubspecNotifDependencies create({
  1. String special_type = "pubspecNotifDependencies",
  2. PubspecNotifDependenciesExtra? flutter,
  3. String? cupertino_icons,
})
override

return original data json

Implementation

static PubspecNotifDependencies create({

  String special_type = "pubspecNotifDependencies",
    PubspecNotifDependenciesExtra? flutter,
  String? cupertino_icons,
})  {
  // PubspecNotifDependencies pubspecNotifDependencies = PubspecNotifDependencies({
Map pubspecNotifDependencies_data_create_json = {

    "@type": special_type,
    "flutter": (flutter != null)?flutter.toJson(): null,
    "cupertino_icons": cupertino_icons,


};


        pubspecNotifDependencies_data_create_json.removeWhere((key, value) => value == null);
PubspecNotifDependencies pubspecNotifDependencies_data_create = PubspecNotifDependencies(pubspecNotifDependencies_data_create_json);

return pubspecNotifDependencies_data_create;



    }