Info constructor

const Info({
  1. required int version,
  2. required String author,
})

Implementation

const Info({
  required this.version,
  required this.author,
});