class KeyValue { String name; dynamic value; KeyValue(this.name, this.value); @override String toString() { return '$name: $value'; } }