OneValue constructor

const OneValue({
  1. Key? key,
  2. required String title,
  3. required String value,
})

Implementation

const OneValue({
  super.key,
  required this.title,
  required this.value,
});