Notify constructor

const Notify({
  1. required String packageName,
  2. required String currentVersion,
  3. bool verbose = false,
})

Constructor for the update notifier

Implementation

const Notify({
  required this.packageName,
  required this.currentVersion,
  this.verbose = false,
});