NetworkConfig constructor

NetworkConfig({
  1. String? network,
  2. String? ipAllocation,
})

Implementation

factory NetworkConfig({
  $core.String? network,
  $core.String? ipAllocation,
}) {
  final $result = create();
  if (network != null) {
    $result.network = network;
  }
  if (ipAllocation != null) {
    $result.ipAllocation = ipAllocation;
  }
  return $result;
}