class ToneRequest { String tone; ToneRequest({this.tone = "Strict"}); Map toJson() { final Map data = {}; data['tone'] = tone; return data; } }