Info constructor

const Info({
  1. required String buildDate,
  2. required String compiler,
  3. required String gitCommit,
  4. required String gitTreeState,
  5. required String gitVersion,
  6. required String goVersion,
  7. required String major,
  8. required String minor,
  9. required String platform,
})

Default constructor.

Implementation

const Info({
  required this.buildDate,
  required this.compiler,
  required this.gitCommit,
  required this.gitTreeState,
  required this.gitVersion,
  required this.goVersion,
  required this.major,
  required this.minor,
  required this.platform,
});