create static method

SicepatDataTrackHistory create({
  1. String special_type = "sicepatDataTrackHistory",
  2. String? date_time,
  3. String? status,
  4. String? city,
})
override

return original data json

Implementation

static SicepatDataTrackHistory create({
  String special_type = "sicepatDataTrackHistory",
  String? date_time,
  String? status,
  String? city,
}) {
  // SicepatDataTrackHistory sicepatDataTrackHistory = SicepatDataTrackHistory({

  SicepatDataTrackHistory sicepatDataTrackHistory_data_create =
      SicepatDataTrackHistory({
    "@type": special_type,
    "date_time": date_time,
    "status": status,
    "city": city,
  });

// return sicepatDataTrackHistory;
  return sicepatDataTrackHistory_data_create;
}