Files
flutter_wisetronic/lib/models/key_value.dart
2021-08-31 13:28:33 -04:00

12 lines
154 B
Dart

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