create static method
return original data json
Implementation
static Transcribe create({
String? special_type,
String? text,
}) {
Transcribe transcribe = Transcribe({
"@type": special_type,
"text": text,
});
return transcribe;
}
return original data json
static Transcribe create({
String? special_type,
String? text,
}) {
Transcribe transcribe = Transcribe({
"@type": special_type,
"text": text,
});
return transcribe;
}