create static method

Transcribe create({
  1. String? special_type,
  2. String? text,
})
override

return original data json

Implementation

static Transcribe create({
  String? special_type,
  String? text,
}) {
  Transcribe transcribe = Transcribe({
    "@type": special_type,
    "text": text,
  });

  return transcribe;
}