Entry<T> constructor

const Entry<T>({
  1. required String title,
  2. required T value,
})

Implementation

const Entry({required this.title, required this.value});