ReleaseNotesController constructor

ReleaseNotesController({
  1. required String configHomeDir,
  2. required String appVersion,
  3. bool isNonInteractive = false,
  4. bool isEssentialTrafficOnly = false,
  5. Future<String?> httpGet(
    1. String url
    )?,
})

Implementation

ReleaseNotesController({
  required this.configHomeDir,
  required this.appVersion,
  this.isNonInteractive = false,
  this.isEssentialTrafficOnly = false,
  Future<String?> Function(String url)? httpGet,
}) : _httpGet = httpGet;