VersionCheckService constructor

VersionCheckService({
  1. String packageName = 'intl_localizable',
  2. String currentVersion = packageVersion,
  3. Duration checkInterval = const Duration(days: 1),
  4. String baseUrl = 'https://pub.dev',
  5. HttpClient? httpClient,
  6. File? cacheFile,
})

Implementation

VersionCheckService({
  this.packageName = 'intl_localizable',
  this.currentVersion = packageVersion,
  this.checkInterval = const Duration(days: 1),
  this.baseUrl = 'https://pub.dev',
  this.httpClient,
  this.cacheFile,
});