create static method
PubspecNotifDependencies
create({
- String special_type = "pubspecNotifDependencies",
- PubspecNotifDependenciesExtra? flutter,
- 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;
}