ReachabilityDetails constructor

ReachabilityDetails({
  1. required String countryCode,
  2. required String networkId,
  3. required String networkName,
  4. required List<Product>? products,
  5. required ReachabilityError? error,
})

Implementation

ReachabilityDetails(
    {required this.countryCode,
    required this.networkId,
    required this.networkName,
    required this.products,
    required this.error});