Pair<T> constructor
Pair<T> ({
- required String label,
- required T value,
Implementation
Pair({
required this.label,
required this.value,
});
Pair({
required this.label,
required this.value,
});