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