import 'dart:convert'; class TextValue { String text; int value; TextValue.fromJson(Map json) : text = json['text'], value = int.parse(json['value'].toString()); Map toJson() => { 'text': text, 'value': value }; @override String toString() { return json.encode(this); } }