ForceUpdateException constructor

const ForceUpdateException({
  1. required String currentVersion,
  2. required String minimumVersion,
})

Creates a ForceUpdateException with the currentVersion and minimumVersion.

Implementation

const ForceUpdateException({required this.currentVersion, required this.minimumVersion})
  : super(message: 'Version $currentVersion is below the required minimum $minimumVersion');