LocalizedValue constructor

const LocalizedValue({
  1. required double value,
  2. required String text,
})

Implementation

const LocalizedValue({
  required this.value,
  required this.text,
});