ProxyModel constructor

const ProxyModel({
  1. required String ip,
  2. required int port,
  3. String? countryCode,
  4. bool isHttps = false,
  5. String? anonymityLevel,
  6. int? lastChecked,
  7. int? responseTime,
})

Creates a new ProxyModel instance

Implementation

const ProxyModel({
  required this.ip,
  required this.port,
  this.countryCode,
  this.isHttps = false,
  this.anonymityLevel,
  this.lastChecked,
  this.responseTime,
});