Input$ConfigDLNAInput constructor

Input$ConfigDLNAInput({
  1. String? serverName,
  2. bool? enabled,
  3. int? port,
  4. List<String>? whitelistedIPs,
  5. List<String>? interfaces,
  6. String? videoSortOrder,
})

Implementation

factory Input$ConfigDLNAInput({
  String? serverName,
  bool? enabled,
  int? port,
  List<String>? whitelistedIPs,
  List<String>? interfaces,
  String? videoSortOrder,
}) => Input$ConfigDLNAInput._({
  if (serverName != null) r'serverName': serverName,
  if (enabled != null) r'enabled': enabled,
  if (port != null) r'port': port,
  if (whitelistedIPs != null) r'whitelistedIPs': whitelistedIPs,
  if (interfaces != null) r'interfaces': interfaces,
  if (videoSortOrder != null) r'videoSortOrder': videoSortOrder,
});