create static method

Installment create({
  1. String? special_type,
  2. bool? required,
  3. Terms? terms,
})
override

return original data json

Implementation

static Installment create({

  String? special_type,
  bool? required,
    Terms? terms,
})  {
  Installment installment = Installment({

    "@type": special_type,
    "required": required,
    "terms": (terms != null)?terms.toJson(): null,


});


return installment;

    }