create static method

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

return original data json

Implementation

static Transcribe create({

  String special_type = "transcribe",
  String? text,
})  {
  // Transcribe transcribe = Transcribe({
Map transcribe_data_create_json = {

    "@type": special_type,
    "text": text,


};


        transcribe_data_create_json.removeWhere((key, value) => value == null);
Transcribe transcribe_data_create = Transcribe(transcribe_data_create_json);

return transcribe_data_create;



    }