InternetCheckResult constructor

InternetCheckResult({
  1. required bool isValid,
  2. required String message,
  3. required InternetErrorType errorType,
  4. double? speed,
  5. bool? isUsingVPN,
  6. String? connectionType,
})

Implementation

InternetCheckResult({
  required this.isValid,
  required this.message,
  required this.errorType,
  this.speed,
  this.isUsingVPN,
  this.connectionType,
});