Info constructor

Info({
  1. required String title,
  2. required String description,
  3. required String version,
  4. required Contact? contact,
})

Constructs an Info object with required fields and optional contact.

Implementation

Info({
  required this.title,
  required this.description,
  required this.version,
  required this.contact,
});