Info constructor

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

Implementation

const Info({Key? key, required this.title, required this.value})
    : super(key: key);