create static method

GetVersion create({
  1. String? special_type,
})
override

return original data json

Implementation

static GetVersion create({
  String? special_type,
}) {
  GetVersion getVersion = GetVersion({
    "@type": special_type,
  });

  return getVersion;
}