VersionCheckResult constructor

VersionCheckResult({
  1. required String currentVersion,
  2. String? latestVersion,
  3. String? changelogUrl,
})

Implementation

VersionCheckResult({
  required this.currentVersion,
  this.latestVersion,
  this.changelogUrl,
});