StatusIps constructor

StatusIps({
  1. required bool running,
  2. List<IpTableError> errors = const [],
})

Returns a new StatusIps instance.

Implementation

StatusIps({
  required this.running,
  this.errors = const [],
});