create static method

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

return original data json

Implementation

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

  return ok;
}