create static method

Terms create({
  1. String? special_type,
  2. List<int>? bni,
  3. List<int>? mandiri,
  4. List<int>? cimb,
  5. List<int>? bca,
  6. List<int>? offline,
})
override

return original data json

Implementation

static Terms create({

  String? special_type,
    List<int>? bni,
    List<int>? mandiri,
    List<int>? cimb,
    List<int>? bca,
    List<int>? offline,
})  {
  Terms terms = Terms({

    "@type": special_type,
    "bni": bni,
    "mandiri": mandiri,
    "cimb": cimb,
    "bca": bca,
    "offline": offline,


});


return terms;

    }