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