create static method
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;
}