create static method

PubspecNotifEnvironment create({
  1. String special_type = "pubspecNotifEnvironment",
  2. String? sdk,
})
override

return original data json

Implementation

static PubspecNotifEnvironment create({

  String special_type = "pubspecNotifEnvironment",
  String? sdk,
})  {
  // PubspecNotifEnvironment pubspecNotifEnvironment = PubspecNotifEnvironment({
Map pubspecNotifEnvironment_data_create_json = {

    "@type": special_type,
    "sdk": sdk,


};


        pubspecNotifEnvironment_data_create_json.removeWhere((key, value) => value == null);
PubspecNotifEnvironment pubspecNotifEnvironment_data_create = PubspecNotifEnvironment(pubspecNotifEnvironment_data_create_json);

return pubspecNotifEnvironment_data_create;



    }